Changeset 83 for trunk/meta/regex.d

Show
Ignore:
Timestamp:
12/16/05 10:41:01 (3 years ago)
Author:
Don Clugston
Message:

added sliceheadoff!(), slicetailoff!() to strhacks (reduces some noise). Also improved comments for math + string functions.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/meta/regex.d

    r79 r83  
    5757 
    5858    - Cannot use an alias as a term within a static if 
    59     alias true foo; 
    60     static if(foo){} // fails 
    6159    // this is why there are so many templates in this file 
     60    [[DAC: This is part of the rule that 'static if' can't refer to variables declared in the same scope. 
     61    It makes it difficult to do complicated functions. 
     62    But, there's a bug in the spec for static if, the "AssignExpression" doesn't make sense.]] 
    6263     
    6364    - No way to stop the compiler dead if there's an error ("pragma(halt)" would be nice)