Home | History | Annotate | Download | only in unit

Lines Matching full:superstring

1094 class superstring
1097 superstring() :
1101 superstring( const string& str ) :
1105 superstring operator / (const string& str )
1106 { return superstring( s + "/" + str ); }
1108 superstring operator / (const char* str )
1109 { return superstring( s + "/" + str ); }
1119 superstring s;
1123 superstring r = s / (more + less);