Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 25th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /** Filter
  2. *   If a value matches the given input, it is removed from the StringList */
  3.         public SLPair Filter( String value ){
  4.                 if( this.string.contains(value) ){
  5.                         return this.next.Filter( value );
  6.                         }
  7.                 return new SLPair(this.string, this.next.Filter( value ));
  8.                 }