Search the web
Sign In
New User? Sign Up
eiffel-nice-library · Eiffel Nice Library
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2637 - 2666 of 2818   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2637
Just wanted to check something. In the BNF grammar we provided for the `is_XXX' features in the STRING class. Did we incontiously accept white spaces before...
Emmanuel STAPF [ISE]
manus_eiffel
Offline Send Email
Apr 24, 2002
3:22 pm
2638
... I think I did these (at least the initial versions). My understanding of BNF says that whitespace has to be written explicitely, e.g. like this: SPACE or "...
Arno Wagner
gweihir2
Offline Send Email
Apr 24, 2002
4:05 pm
2639
... No, whitespace is not accepted. We decided that stripping whitespace and parsing numbers are completely orthogonal. One reason is that the definition of...
Roger Browne
eiffeltm
Offline Send Email
Apr 25, 2002
6:47 am
2640
Oops, sorry, I used the wrong group (ment for "library"). Please forgive me! Ulrich...
Ulrich Windl
ujmw2001
Offline Send Email
Jun 11, 2002
6:44 am
2641
... The problem with "from_external" is that is does not create an Eiffel string, but rather an "access-object" for the c-string. But there is...
Arno Wagner
gweihir2
Offline Send Email
Jun 11, 2002
2:27 pm
2642
Hi, from_external_copy definitely lacks the explicit length needed for transparent character streams! Regards, Ulrich...
Ulrich Windl
ujmw2001
Offline Send Email
Jun 11, 2002
2:42 pm
2643
Hello, a moment ago I realized that ARRAY lacks features to insert and remove items! (SmallEiffel can add_first, add_last, and remove, but not insert in the ...
Ulrich Windl
ujmw2001
Offline Send Email
Jun 20, 2002
7:34 am
2644
... Why not use Gobo??? -- Live long and prosper, Berend de Boer...
Berend de Boer
berenddeboer
Offline Send Email
Jun 20, 2002
8:32 am
2645
... Could you be more specific? Which GOBO class? Besides of that, do you really think a generic insert routine is that bad for ARRAY? OK, it's frquently done...
Ulrich Windl
ujmw2001
Offline Send Email
Jun 20, 2002
9:25 am
2646
Hello, ... and remove ... insert in the ... Yes it can. See the feature add(element: like item; index: INTEGER) in class COLLECTION. As for item removal, just...
Cyril Adrian
cad_sxb
Offline Send Email
Jun 20, 2002
1:10 pm
2647
... You can use the flat-short version of a class to check what features it has. You get this form e.g. for ARRAY by calling "short array.e". Regards, Arno -- ...
Arno Wagner
gweihir2
Offline Send Email
Jun 20, 2002
1:22 pm
2648
... My fault! You are right. Actually I used the short form, but searched for "insert" and "append". "add" did not qualify for that: add (element: like item;...
Ulrich Windl
ujmw2001
Offline Send Email
Jun 20, 2002
2:07 pm
2649
... DS_ARRAYED_LIST if you want ARRAY storage of an integer indexed list. ... I think one point for the current situation is that ARRAY is a basic building...
Franck Arnaud
franck@...
Send Email
Jun 20, 2002
11:59 pm
2650
... OK. ... IMHO, STRING and ARRAY[CHARACTER] should be mostly similar. If I can insert and remove characters from STRINGS, why not doing so with elements in...
Ulrich Windl
ujmw2001
Offline Send Email
Jun 24, 2002
6:33 am
2651
Hello everybody! After the mast major effort (STRING), it seems we have trouble continuing the good work. One thing we should think about is what is most...
Arno Wagner
gweihir2
Offline Send Email
Jul 22, 2002
9:11 pm
2652
... I guess we miss Roger's stewardship. It would be nice if someone takes over Roger's role if Roger is too busy. ... Go on working on ANY, COMPARABLE, then...
Franck Arnaud
franck@...
Send Email
Jul 23, 2002
9:34 am
2653
Hello, as a starting point: Should we require that kernel classed may not inherit any class other than the specified? I mean "is an ARRAY a COLLECTION", and if...
Ulrich Windl
ujmw2001
Offline Send Email
Jul 23, 2002
10:25 am
2654
... Hello, Arno. Actually, after Roger Browne took a break, it appears no one wanted to step into his large shoes and stand up with an agenda. So while you're...
Greg C
gmc444
Offline Send Email
Jul 23, 2002
11:36 pm
2655
... I think this is a question about the role of "implementation inheritance" in the Eiffel libraries, and that the fact that different librarians are free to...
Peter Horan
peter7723
Offline Send Email
Jul 24, 2002
2:26 am
2656
... No, that precludes optimization and severely restricts a vendor. It would be enough if features not in the kernel definition would not be exported. -- Live...
Berend de Boer
berenddeboer
Offline Send Email
Jul 24, 2002
6:10 am
2657
... I think this is very hard and unnecessary. You have to take into account all kinds of operating systems. Gobo already has classes for the most common IO...
Berend de Boer
berenddeboer
Offline Send Email
Jul 24, 2002
9:11 am
2658
... Remember that any effort we do must have vendor support. I think it's completely unlikely that we get vendor support on either removing inheritance, or to...
Franck Arnaud
franck@...
Send Email
Jul 24, 2002
10:03 am
2659
Now I have done it... ... It seems I now kind of volunteered to do this.... ... That would be nice. Roger's shoes definitely do not fit me at the moment, but I...
Arno Wagner
gweihir2
Offline Send Email
Jul 24, 2002
12:08 pm
2660
... http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/gobo-eiffel/gobo/library/kernel/io/ ... No problem with me. However note that although I'm quite happy with...
Eric Bezault
gobosoft
Offline Send Email
Jul 25, 2002
3:08 pm
2661
... Good news! ... Yes, but this is new to Gobo CVS/3.0, not in 2.0 (well the functionality was there in helper routines only). ... Yes. (Although arguably it...
Franck Arnaud
franck@...
Send Email
Jul 25, 2002
10:28 pm
2662
... Interesting statement: We heard before that base classes (kernel classes) to not specify what they inherit (i.e. I thought we'd see the flat-short form of...
Ulrich Windl
ujmw2001
Offline Send Email
Jul 26, 2002
6:51 am
2663
... I think the question is not whether we can specify inheritance or not, but if we can specify a hierarchy that vendors can agree on. In the case of ARRAY...
Franck Arnaud
franck@...
Send Email
Jul 26, 2002
2:23 pm
2664
... http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/gobo-eiffel/gobo/library/kernel/io/ ... ===== Apologies for the stupid Yahoo ad below. ...
Greg C
gmc444
Offline Send Email
Jul 26, 2002
2:58 pm
2665
First, I want to apologize for slipping up and sending out a copy of a digest. Yahoo mail and I don't always get along. Second, Arno is off to a good start...
Greg C
gmc444
Offline Send Email
Jul 26, 2002
3:34 pm
2666
It seems people are awake now ;-) Before everybody runs off in a different direction, here is a proposal for a schedule, annotated with some of the problems I...
Arno Wagner
gweihir2
Offline Send Email
Jul 26, 2002
9:29 pm
Messages 2637 - 2666 of 2818   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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