- /** Filter
- * If a value matches the given input, it is removed from the StringList */
- public SLPair Filter( String value ){
- if( this.string.contains(value) ){
- return this.next.Filter( value );
- }
- return new SLPair(this.string, this.next.Filter( value ));
- }