A B C D E F G H I K L M N O P R S T U V W Z 
All Classes All Packages

O

ObservablePanel(Demo4_ClickObservable.PointsModel) - Constructor for class at.jku.ssw.fp.sect10_1.Demo4_ClickObservable.ObservablePanel
 
obsUnderTest - Variable in class at.jku.ssw.fp.sect10_8.Demo1_ObservableTest
 
of(double) - Static method in class at.jku.ssw.fp.util.DoubleRef
Creates an object with a mutable double value.
of(int) - Static method in class at.jku.ssw.fp.util.IntRef
Creates an object with a mutable int value.
of(int, int) - Static method in class at.jku.ssw.fp.sect04_3.puzzle.Pos
Creats a position.
of(int, A) - Static method in class at.jku.ssw.fp.sect07_5.index.Numbered
Creates a numbered value by a number and a value.
of(long) - Static method in class at.jku.ssw.fp.util.LongRef
Creates an object with a mutable long value.
of(A) - Static method in interface at.jku.ssw.fp.sect11_3.check4j.Gen
Creates a generator returning the provided value.
of(A) - Static method in class at.jku.ssw.fp.util.Ref
Creates an object with a mutable value.
of(A, B) - Static method in class at.jku.ssw.fp.util.Pair
Creates a pair of two values.
of(A, B) - Static method in class at.jku.ssw.fp.util.Tuple2
Creates a tuple of two value.
of(A, B, C) - Static method in class at.jku.ssw.fp.util.Tuple3
Creates a tuple of three value.
of(A, B, C, D) - Static method in class at.jku.ssw.fp.util.Tuple4
Creates a tuple of four value.
of(A, B, C, D, E) - Static method in class at.jku.ssw.fp.util.Tuple5
Creates a tuple of five value.
of(A, String) - Static method in class at.jku.ssw.fp.sect06_3_4.Logged
Creates a Logged monad with a wrapped value.
of(Pos, Pos) - Static method in class at.jku.ssw.fp.sect04_3.puzzle.Move
Creates a move from a position to a position
of(Stuff...) - Static method in class at.jku.ssw.fp.sect05_2.workflow.Product
Creates a product from various stuff.
of(E) - Static method in class at.jku.ssw.fp.coll.Tree
Creates a functional tree node with a value and empty left and right subtrees.
of(E) - Static method in interface at.jku.ssw.fp.sect06_3.Parser
Creates a parser which parses the given element as success without consuming a token.
of(E...) - Static method in class at.jku.ssw.fp.coll.FList.Builder
Creates a builder with the provided elements already collected.
of(E...) - Static method in class at.jku.ssw.fp.coll.FList
Creates a functional list with the given elements.
of(E...) - Static method in class at.jku.ssw.fp.coll.FSet.Builder
Creates a builder with the provided elements already collected.
of(E...) - Static method in class at.jku.ssw.fp.coll.FSet
Creates a functional set with the given elements.
of(E, Tree<E>, Tree<E>) - Static method in class at.jku.ssw.fp.coll.Tree
Creates a functional tree node with a value and a left and right subtree.
of(Class<T>, Function<? super T, ? extends R>) - Static method in class at.jku.ssw.fp.util.TypeTestFunction
Creates a typetest function from a class and a function.
of(Iterable<? extends E>) - Static method in class at.jku.ssw.fp.coll.FList.Builder
Creates a builder with the provided elements already collected.
of(Iterable<? extends E>) - Static method in class at.jku.ssw.fp.coll.FSet.Builder
Creates a builder with the provided elements already collected.
of(String, double) - Static method in class at.jku.ssw.fp.sect05_2.workflow.Ingr
Creates an ingredient with name and amount.
of(Function<C, A>) - Static method in class at.jku.ssw.fp.sect06_3_4.Reader
Creates a reader monad from a reader function.
of(Predicate<? super T>, Function<? super T, ? extends R>) - Static method in interface at.jku.ssw.fp.util.CondFunction
Constructs a conditional function from a predicate and a function argument.
of(List<E>) - Static method in class at.jku.ssw.fp.coll.FSet
Creates a functional set from a list of elements.
of(Set<E>) - Static method in class at.jku.ssw.fp.coll.FSet
Creates a functional set from a set of elements.
of(M, BinaryOperator<M>) - Static method in interface at.jku.ssw.fp.sect06_2.Monoid
Constructs a monoid from an identity value and an binary operator.
of(T) - Static method in class at.jku.ssw.fp.sect06_3_4.Id
Creates an Id monad with a wrapped value.
Offer - Class in at.jku.ssw.fp.airline
An offer for a flight
Offer(Retailer, Flight, int) - Constructor for class at.jku.ssw.fp.airline.Offer
Constructor creating an offer.
on(BooleanSupplier, Action) - Method in class at.jku.ssw.fp.sect05_4.dsl.StateModel.State
Adds a transition which triggers based on the given condition.
oneOf(A...) - Static method in class at.jku.ssw.fp.sect11_3.check4j.Gens
Creates a generator which creates values from the given set of values with equal probability.
oneOf(List<A>) - Static method in class at.jku.ssw.fp.sect11_3.check4j.Gens
Creates a generator which creates values from the given set of values with equal probability.
opt(Parser<R>) - Static method in interface at.jku.ssw.fp.sect05_3.parser.Parser
Creates a parser which optionally applies the given parser.
opt(Parser<R>) - Static method in interface at.jku.ssw.fp.sect06_3.Parser
Creates a parser which optionally applies the given parser.
optional(Callable<R>) - Static method in class at.jku.ssw.fp.util.Util
Runs the given callable and returns the value wrapped in an optional.
optionalMonoid(Monoid<E>) - Static method in class at.jku.ssw.fp.sect06_2.Monoids
Creates a monoid for optional values where two values of non-empty optionals are combined by the given monoid.
optNext - Variable in class at.jku.ssw.fp.sect04_6.Lazy.LazyIterator
An optional with the next value; empty if no value exists; null if a next value has to be generated
optShrinker - Variable in class at.jku.ssw.fp.sect11_3.check4j.Property
The optional shrinker for shrinking a failed test value.
Or(Expr, Expr) - Constructor for class at.jku.ssw.fp.expr.Expr.Or
Constructor initializing left and right subexpressions.
Or(Expr, Expr) - Constructor for class at.jku.ssw.fp.sect04_4.visitor_fp.Expr.Or
Constructor initializing left and right subexpressions.
Or(Expr, Expr) - Constructor for class at.jku.ssw.fp.sect04_4.visitor_nofp.Expr.Or
Constructor initializing left and right subexpressions.
Ordered<T> - Interface in at.jku.ssw.fp.sect02_2
Interface extending Comparable with relational operator methods.
orElse(Function<? super T, ? extends R>) - Method in interface at.jku.ssw.fp.util.CondFunction
Returns a combined conditional function.
orElseIf(Predicate<? super T>, Function<? super T, ? extends R>) - Method in interface at.jku.ssw.fp.util.CondFunction
Returns a combined conditional function.
orParser - Variable in class at.jku.ssw.fp.sect05_3.parser.ExprParser
Parser for or-expressions.
orTkn - Static variable in class at.jku.ssw.fp.sect05_3.parser.Demo1_Parser
 
orTkn - Static variable in class at.jku.ssw.fp.sect06_3.Demo2_MonadicParser
 
otherwise(Function<? super T, ? extends R>) - Static method in class at.jku.ssw.fp.util.When
Creates a conditional function from a function and with a test predicate always returning true
out - Static variable in class at.jku.ssw.fp.sect05_4.dsl.Demo1_PropCtrl
 
output - Variable in class at.jku.ssw.fp.sect05_4.dsl.PropCtrl
Variable for the controller output
output() - Method in class at.jku.ssw.fp.sect11_3.check4j.Result
Returns an output string.
A B C D E F G H I K L M N O P R S T U V W Z 
All Classes All Packages