Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact
Show
Ignore:
Timestamp:
10/04/08 23:49:05 (2 months ago)
Author:
kris
Message:

renamed a private method

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/convert/Layout.d

    r3778 r3969  
    186186        public final T[] convertOne (T[] result, TypeInfo ti, Arg arg) 
    187187        { 
    188                 return munge (result, null, ti, arg); 
     188                return dispatch (result, null, ti, arg); 
    189189        } 
    190190 
     
    508508                                else 
    509509                                   // the standard processing 
    510                                    process (munge(result, format, _ti, _arg)); 
     510                                   process (dispatch (result, format, _ti, _arg)); 
    511511                      } 
    512512 
     
    551551        ***********************************************************************/ 
    552552 
    553         private T[] munge (T[] result, T[] format, TypeInfo type, Arg p) 
     553        private T[] dispatch (T[] result, T[] format, TypeInfo type, Arg p) 
    554554        { 
    555555                switch (type.classinfo.name[9]) 
     
    641641 
    642642                       case TypeCode.ENUM: 
    643                             return munge (result, format, (cast(TypeInfo_Enum) type).base, p); 
     643                            return dispatch (result, format, (cast(TypeInfo_Enum) type).base, p); 
    644644 
    645645                       case TypeCode.TYPEDEF: 
    646                             return munge (result, format, (cast(TypeInfo_Typedef) type).base, p); 
     646                            return dispatch (result, format, (cast(TypeInfo_Typedef) type).base, p); 
    647647 
    648648                       default: