Changeset 211 for trunk/random.d

Show
Ignore:
Timestamp:
08/22/10 21:53:08 (1 year ago)
Author:
dsimcha
Message:

Fix ranges: Add save() and @property stuff.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/random.d

    r209 r211  
    183183    } 
    184184 
    185     typeof(randFun(args)) front() { 
     185    @property typeof(randFun(args)) front() { 
    186186        return frontElem; 
    187187    } 
     
    202202    } 
    203203 
    204     typeof(this) save() @property
     204    @property typeof(this) save()
    205205        return this; 
    206206    }