Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

eiffel_software · Eiffel Software User list

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1379
  • Category: Development
  • Founded: Oct 30, 2001
  • Language: English
? 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.

Messages

Advanced
Messages Help
Messages 11028 - 11057 of 20470   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
11028 cipher1024 Send Email Aug 1, 2007
4:34 pm
I'm trying to use CECIL on an embedded platform so I modified my VC project file so that it knows the right include paths and lib paths. One of those paths is...
11029 Yauheni Akhotnikau
eao197 Send Email
Aug 1, 2007
6:53 pm
Hi! I've finished my first more or less serious Eiffel program. I'm affraid that it is C++/D program just rewritten in Eiffel. But there isn't any experienced...
11030 Bernd Schoeller
berndschoeller Send Email
Aug 1, 2007
8:44 pm
At Wed, 01 Aug 2007 22:45:31 +0400, ... This is gonna be a short answer, as I did not go over the whole program, but some first impressions: The code and...
11031 Yauheni Akhotnikau
eao197 Send Email
Aug 1, 2007
9:02 pm
Thanks, Bernd. On Thu, 02 Aug 2007 00:43:02 +0400, Bernd Schoeller ... I've seen 'a_' and 'l_' prefixes in Eiffel samples and libraries. For me it is more...
11032 colinlema Send Email Aug 1, 2007
10:14 pm
... something ... Basically the rule states that if a feature returns a result, the feature needs to be purely functional. From what I can see ...
11033 Paul Bates
pa_bates80 Send Email
Aug 1, 2007
11:32 pm
Yauheni, I've not fully reviewed you code yet but I did notice you implemented your own argument option parser. If you need to use it then there's a powerful...
11034 Peter Gummer
peter_gummer Send Email
Aug 1, 2007
11:36 pm
... This looks really useful. Why isn't it one of the libraries installed with EiffelStudio? - Peter Gummer...
11035 Emmanuel Stapf [ES]
manus_eiffel Send Email
Aug 1, 2007
11:45 pm
... If your embedded system has nothing to do with windows, then you cannot use the standard windows EiffelStudio delivery to compile for this platform. ...
11036 Thomas Beale
twbeale Send Email
Aug 1, 2007
11:56 pm
We have a typical tree data structure of the form TWO_WAY_TREE [ITEM] where ITEM has two subtypes, call them FOLDER_ITEM and OBJECT_ITEM I have a routine that...
11037 colinlema Send Email Aug 2, 2007
2:55 am
Is there a reason you're losing the type information in the first place? I try to only do permanent type narrowing is if that information doesn't matter...
11038 Eric Bezault
gobosoft Send Email
Aug 2, 2007
7:48 am
... There is such a library in Gobo. It's not hidden and it even has some doc: http://www.gobosoft.com/eiffel/gobo/argument/index.html -- Eric Bezault ...
11039 Eric Bezault
gobosoft Send Email
Aug 2, 2007
8:09 am
... What about using the visitor pattern: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ deferred class ITEM_VISITOR feature -- Actions visit_folder (an_item: FOLDER_ITEM) is ...
11040 Thomas Beale
twbeale Send Email
Aug 2, 2007
8:24 am
... not sure what you mean by that... ... maybe we are at cross purposes; the data structure has two node types - 'folder&#39; and a 'leaf object', each of a...
11041 Yauheni Akhotnikau
eao197 Send Email
Aug 2, 2007
8:27 am
... That's exactly what I meant. I've fixed my code. -- Regards, Yauheni Akhotnikau Senior Programmer Intervale e-mail:eao197@......
11042 Yauheni Akhotnikau
eao197 Send Email
Aug 2, 2007
8:45 am
Hi, Paul Thanks for your references. Almost all newcomers tend to reinvent the wheel just because they don't know which libraries the language already has. It...
11043 Bernd Schoeller
berndschoeller Send Email
Aug 2, 2007
9:04 am
At Thu, 02 Aug 2007 01:01:40 +0400, ... Other have already answered, but I just want to make it clear: no it is not Eiffel-ish. Parse still returns a value and...
11044 Peter Gummer
peter_gummer Send Email
Aug 2, 2007
9:20 am
... How is 'parse&#39; a command in the above code, Bernd? Sure, the name 'parse&#39;, being a verb, suggests that it is a command; but ignoring the poor name all I...
11045 Colin Adams
colinpauladams@... Send Email
Aug 2, 2007
9:39 am
... Eiffel does NOT enforce the separation. Which is a pity, as if it did a compiler would be able to do more optimizations. ...
11046 Yauheni Akhotnikau
eao197 Send Email
Aug 2, 2007
9:50 am
On Thu, 02 Aug 2007 13:39:16 +0400, Colin Adams ... Do you mean something like 'const&#39;-modificator in C++ (and const/invariant modificators in D2.0)? E.g....
11047 Yauheni Akhotnikau
eao197 Send Email
Aug 2, 2007
9:50 am
On Thu, 02 Aug 2007 13:20:27 +0400, Peter Gummer <p-gummer@...> ... In my new implementation 'parse&#39; is side effects free. What name could be...
11048 Colin Adams
colinpauladams@... Send Email
Aug 2, 2007
10:03 am
... Well I certainly would not want to see C++ const. Actually, side-effect freedom is insufficient - full referential transparency is needed. ...
11049 Thomas Beale
twbeale Send Email
Aug 2, 2007
11:24 am
Yes, that's not bad actually; more code, but it is an elegant approach. The trick here is that all visitor instances have a routine for each kind of node they...
11050 Bernd Schoeller
berndschoeller Send Email
Aug 2, 2007
12:15 pm
At Thu, 02 Aug 2007 13:28:37 +0400, ... Ah, ok, I was mislead by the naming. Only commands should be named by verbs. Queries are named by nouns or adjectives....
11051 Yauheni Akhotnikau
eao197 Send Email
Aug 2, 2007
1:33 pm
On Thu, 02 Aug 2007 16:03:34 +0400, Bernd Schoeller ... It's hard task for non-English speakers :) -- Regards, Yauheni Akhotnikau Senior Programmer Intervale ...
11052 Emmanuel Stapf [ES]
manus_eiffel Send Email
Aug 2, 2007
3:00 pm
... We have a few libraries in the pipeline that are not yet included in EiffelStudio. We do not yet include them because we don't feel that are mature yet,...
11053 Simon Hudon
cipher1024 Send Email
Aug 2, 2007
3:15 pm
The platform I use is based on an Intel processor and I am capable of running C codes compiled with MS C compiler if I compile into a dll and mechanically...
11054 Emmanuel Stapf [ES]
manus_eiffel Send Email
Aug 2, 2007
4:02 pm
... Compared to a normal assignment you can distinguish two cases: - object type is exactly the same as the target type: 2 comparisons, 1 call. - object type...
11055 Emmanuel Stapf [ES]
manus_eiffel Send Email
Aug 2, 2007
4:23 pm
... Given this, you still have to customize the runtime. First checkout the runtime: svn co...
11056 Simon Hudon
cipher1024 Send Email
Aug 2, 2007
6:19 pm
Neat! Thanks Manu, I'll try it out as soon as I can. Would it be possible to select this custom run-time when compiling under EiffelStudio? I guess I could...
11057 Emmanuel Stapf [ES]
manus_eiffel Send Email
Aug 2, 2007
6:33 pm
... For the moment, I suggested you modify the windows-msc-x86 file, but ideally it should be another file. In 6.1, the name of the file on Windows will follow...
Messages 11028 - 11057 of 20470   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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