Changeset 119

Show
Ignore:
Timestamp:
10/18/08 15:33:29 (4 years ago)
Author:
csauls
Message:

Removed documentation from the repository. It can still be generated by DDocs, and is also available elsewhere (the DSource wiki, which admittedly needs updating).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cashew/json/Value.d

    r109 r119  
    310310    /// ditto 
    311311    public JsonValue opIndexAssign (JsonValue value, JsonString key) { 
     312        assertType(JsonType.Object); 
    312313        _o[key.dup] = value.dup; 
    313314        return this; 
  • trunk/cashew/utils/Array.d

    r65 r119  
    44 *  $(CASHEW_HEAD) 
    55 * 
    6  *  Version: 0.14.0 
     6 *  Version: 0.14.1 
    77 * 
    88 *  <b>Authors, Contributors, and Acknowledgements:</b><br /> 
     
    1616 *    "baxissimo" 
    1717 * 
    18  *  Date: Jan 26, 2008 
     18 *  Date: Oct 13, 2008 
    1919 * 
    2020 *  Notes: 
     
    556556size_t indexOfSub (T) (T[] haystack, T[] bale, size_t start = 0U) 
    557557body { 
     558    size_t 
     559        mark ; 
     560 
    558561    foreach (idx, elem; haystack[start .. $ - bale.length]) { 
    559         if (haystack[(start + idx) .. (start + idx + bale.length)] == bale) { 
     562        mark = start + idx; 
     563        if (haystack[mark .. (mark + bale.length)] == bale) { 
    560564            return idx; 
    561565        }