Algorithmic Sets

Aus apemap Wiki
Version vom 8. November 2014, 08:34 Uhr von imported>Mkurz
Zur Navigation springen Zur Suche springen

Definition Algorithmic Set

  • We want to define an algorithmic set via a Predicate deciding if an element is part of the set.
  • In java we could use the functional interface Predicate<T>
public interface Predicate<T>{
    
}