Search the web
Sign In
New User? Sign Up
gobo-eiffel · Gobo Eiffel
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 405 - 434 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
405
Hello Eric, What's the point of make_default in this class? I've a class I want to make a container, but because of its invariants, make_default without ...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 2, 2002
8:07 am
406
Hai Eric, In DS_TRAVERSABLE I found this comment: -- Some Eiffel compilers check invariants even when the -- execution of the creation procedure is not...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 2, 2002
8:07 am
407
... Just curious: what sort of invariant that is? The only thing I can think of is a container that cannot be empty (that could make sense). -- ...
Franck Arnaud
franck@...
Send Email
Aug 2, 2002
8:16 pm
408
... I think that this is still true. If I remember correctly, at the time I wrote this comment, only the TowerEiffel compiler would not check invariants when...
Eric Bezault
gobosoft
Offline Send Email
Aug 2, 2002
9:49 pm
409
... I don't personally use this feature, but it was requested by Franck as a creation routine with no arguments for the container classes. I had no problem...
Eric Bezault
gobosoft
Offline Send Email
Aug 2, 2002
9:55 pm
410
... It has a pointer (handle) to a class that implements the functionality. The actual handle changes depending on the configured environment. It is a...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 3, 2002
6:25 am
411
... Of course, as it is a creation feature, it's not necessary that it is in the ancestor, where it's mostly useful for documentation purposes. It's OK to...
Franck Arnaud
franck@...
Send Email
Aug 3, 2002
10:56 pm
412
... It looks like your container-less cursor is what I suggested in: http://www.geocrawler.com/archives/3/12674/2002/5/50/8686032/ with the class DS_ITERATOR...
Eric Bezault
gobosoft
Offline Send Email
Aug 4, 2002
3:32 am
413
... Yes, I like this. I don't need it know, but it is very useful to be able to write cursors for everything. Now we can write iterators for STRING and ARRAY...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 5, 2002
4:54 am
414
... My idea. You have to effect it and not list it. When nobody needs it, make it obsolete. One less thing to do. ... require else... -- Live long and prosper,...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 5, 2002
4:54 am
415
Hello, I have an XML file with some non-ASCII characters ("human-readable" descriptions -- letters with accents). I'm using XML GOBO classes with an...
Philippe Macaire
macaire@...
Send Email
Aug 12, 2002
7:30 am
416
... Only with the iso-8859-1 character set, which, unfortunately, is not supported by Gobo yet. Try the utf-8 character set (the default), so save your file as...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 12, 2002
9:09 am
417
... You need to set the parser mode (a_parser.set_string_mode_mixed for example). It defaults to ASCII-only to be safe of STRING polymorphism. I'm sorry ...
Franck Arnaud
franck@...
Send Email
Aug 12, 2002
12:06 pm
418
Franck, Berend, thanks for your answers. It looks like I need to delve into Unicode a little bit, or find another solution. With mixed mode and &#223; like...
Philippe Macaire
macaire@...
Send Email
Aug 12, 2002
5:04 pm
419
Hello there, We have a project listed on www.ecknowledge.com called "FlatGlassPro: on-site estimating and management tool". Please note it's a freelance ...
ecknowledge2002
ecknowledge2002@...
Send Email
Aug 13, 2002
6:19 am
420
Hello Eric, This does not seem to work, intentional? DIGIT [0-9] %% [^{DIGIT] { do something } I.e. using a name definition in a negated character class. -- ...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 26, 2002
8:48 am
421
... Assuming it works intuitively, that would expand to [^[0-9]] rather than what you want: [^0-9]...
Franck Arnaud
franck@...
Send Email
Aug 27, 2002
10:09 am
422
... Intuitively, I assume it is already 'expanded', so it's not just macro replacement :-) But perhaps that's exactly what it does, can you shed any light on ...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 28, 2002
6:50 am
423
... Somehow I didn't receive the original message from the mailing list, that's why I didn't answer earlier. Here is what the doc says: ...
Eric Bezault
gobosoft
Offline Send Email
Aug 28, 2002
8:02 am
424
... But that makes a name definition less useful, doesn't it? Often you have this: {DIGIT} -- action [^{DIGIT} -- something else I think the usefulness of...
Berend de Boer
berenddeboer
Online Now Send Email
Aug 31, 2002
8:16 am
425
... {DIGIT} is a regular expression. Character classes are not made up of regular expressions. They are made up of characters and character ranges. In your...
Eric Bezault
gobosoft
Offline Send Email
Aug 31, 2002
8:43 am
426
... Yes of course, I just wanted to give a simple example. A more difficult one is: [^{DIGIT}{SPACE}{ALPHA}] -- action Your example has limited scalability...
Berend de Boer
berenddeboer
Online Now Send Email
Sep 2, 2002
6:29 am
427
Hi, i need to store a number of peoples names and scores, and then be able to display them. How can i use an array to store these values if all information has...
jamespeterdaly
Offline Send Email
Sep 4, 2002
7:02 am
428
Has anybody succedded bootstraping the latest GOBO from CVS with SmartEiffel ? I was able to compile my programs with SmartEiffel, but as soon as I tried to ...
Marcio Marchini
sglebs
Offline Send Email
Sep 7, 2002
3:50 pm
429
Hi, I am running teh CVS version of GOBO (updated last night). My xace file has this: <option if="${DEBUG}"> <option name="assertion" value="all"/> <option...
Marcio Marchini
sglebs
Offline Send Email
Sep 7, 2002
3:56 pm
430
... The above code is correct. If you look at the generated Ace file you should see that all debug instructions have been generated by 'gexace'. Therefore I...
Eric Bezault
gobosoft
Offline Send Email
Sep 7, 2002
6:55 pm
431
... True. ... Ok. I just emailed the SE list, let's see what happens. Maybe it is fixed with SmartEiffel, but because I could not boostrap GOBO with ...
Marcio Marchini
sglebs
Offline Send Email
Sep 7, 2002
8:16 pm
432
Hello Eric, What exactly does DS_HASH_TABLE.make do with the given number of items? Is that the capacity or more an indication of the number of items you...
Berend de Boer
berenddeboer
Online Now Send Email
Sep 19, 2002
4:32 am
433
... It's the capacity as defined here: make (n: INTEGER) is -- Create an empty table and allocate -- memory space for at least `n' items. -- Use `=' as...
Eric Bezault
gobosoft
Offline Send Email
Sep 19, 2002
9:04 am
434
... Ah, yes, overlooked that. ... All automatic, I love that :-) So if I give just the max number of items, DS_HASH_TABLE will operate optimal (as good as...
Berend de Boer
berenddeboer
Online Now Send Email
Sep 19, 2002
10:15 am
Messages 405 - 434 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help