Re: D 2.00 official spec

2009-09-07 Thread Robin KAY
detail is added and ambiguities are resolved. -- Robin KAY

Re: cast(public)

2009-07-18 Thread Robin KAY
protection attributes have any effect within a module. Members of the same module are always "friends". See: http://www.digitalmars.com/d/2.0/attribute.html#ProtectionAttribute -- Robin KAY

Re: GC object finalization not guaranteed

2009-04-19 Thread Robin KAY
your program, create a file, then exit. Repeat until all disk space is exhausted. SYSV IPC objects have a persistent identifier through which they can be accessed by multiple processes. -- Robin KAY

Re: .NET on a string

2009-03-23 Thread Robin KAY
erence to a sub-string will prevent the parent from being collected and this is not an obvious side-effect of substring(). Storing longer strings as ropes might be better. class String { char[] value; int offset; int count; } -- Robin KAY