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

F

facIter(int) - Static method in class at.jku.ssw.fp.sect03_1.Demo2_Fac
 
facRec(int) - Static method in class at.jku.ssw.fp.sect03_1.Demo2_Fac
 
failed() - Method in class at.jku.ssw.fp.sect05_3.parser.Result
Returns if this object represents a failed result.
failed() - Method in class at.jku.ssw.fp.sect06_3.Result
Returns if this object represents a failed result.
failed() - Method in class at.jku.ssw.fp.sect11_3.check4j.Result
Tests if there is failed test.
failure - Variable in class at.jku.ssw.fp.sect11_3.check4j.Result
The optional failed test value
failure(Exception, FList<String>) - Static method in class at.jku.ssw.fp.sect05_3.parser.Result
Creates a failed result consisting of an exception and the rest of the input.
failure(Exception, FList<String>) - Static method in class at.jku.ssw.fp.sect06_3.Result
Creates a failed result consisting of an exception and the rest of the input.
failWith(A) - Method in class at.jku.ssw.fp.sect11_3.check4j.Result
Sets the failed test value.
Family - Class in at.jku.ssw.fp.sect06_3
Class representing families is member persons.
Family() - Constructor for class at.jku.ssw.fp.sect06_3.Family
 
fib(long) - Static method in class at.jku.ssw.fp.sect03_1.Demo4_Fib
 
field - Variable in class at.jku.ssw.fp.sect04_3.puzzle.Puzzle
 
FILLED - at.jku.ssw.fp.sect05_4.dsl.States
 
FILLING - at.jku.ssw.fp.sect05_4.dsl.States
 
filter(Predicate<? super A>) - Method in interface at.jku.ssw.fp.sect11_3.check4j.Gen
Filters the value of this generator.
filter(Predicate<? super E>) - Method in class at.jku.ssw.fp.coll.FList
Returns a functional list consisting of the elements of this list that match the given predicate.
filter(Predicate<? super E>) - Method in class at.jku.ssw.fp.coll.FSet
Returns a functional set consisting of the elements of this set that match the given predicate.
filter(Predicate<? super E>) - Method in interface at.jku.ssw.fp.sect05_3.parser.Parser
Creates a new parser from this parser which is only successful if the parse result fulfills the given predicate.
filter(Predicate<? super E>) - Method in interface at.jku.ssw.fp.sect06_3.Parser
Creates a new parser from this parser which is only successful if the parse result fulfills the given predicate.
find(Iterable<T>, Predicate<T>) - Static method in class at.jku.ssw.fp.sect04_6.Lazy
Finds an element in the elements in the given iterable which satisfies the given predicate.
find(Predicate<? super E>) - Method in class at.jku.ssw.fp.coll.FList
Finds an element that fulfills the given predicate.
find(Iterator<T>, Predicate<T>) - Static method in class at.jku.ssw.fp.sect04_6.Lazy
Finds an element in the elements from the given iterator which satisfies the given predicate.
findDataStart(String, String) - Static method in class at.jku.ssw.fp.sect10_3.WeatherData
 
findFlight(Airline, String, String, LocalDate) - Method in class at.jku.ssw.fp.airline.Agency
Finds a flight provided by an airline.
findFlight(String, String, LocalDate) - Method in class at.jku.ssw.fp.airline.Airline
Returns a flight provided by the airline.
findFlight(String, String, LocalDate) - Static method in class at.jku.ssw.fp.sect10_2.Demo3_Maybe
 
findFlightAsync(String, String, LocalDate) - Method in class at.jku.ssw.fp.airline.Airline
Returns a completable future for a flight provided by the airline.
findFlights(String, String, LocalDate) - Method in class at.jku.ssw.fp.airline.Airline
Returns a list of flights offered by the airline.
findInFile(String, String) - Static method in class at.jku.ssw.fp.sect09_5.Demo_AsyncFileRead
 
findInFileAsync(String, String) - Static method in class at.jku.ssw.fp.sect09_5.Demo_AsyncFileRead
 
findInFileAsyncCond(String, String) - Static method in class at.jku.ssw.fp.sect09_5.Demo_AsyncFileRead
 
findSqrt(double) - Static method in class at.jku.ssw.fp.sect04_6.Demo2_LazySqrt
 
finisher() - Method in class at.jku.ssw.fp.sect07_4.ConstantCollector
Performs the final transformation.
firstName - Variable in class at.jku.ssw.fp.sect05_2.Person
 
flatMap(Function<? super A, Reader<C, ? extends B>>) - Method in class at.jku.ssw.fp.sect06_3_4.Reader
Monad operator.
flatMap(Function<? super A, Gen<? extends B>>) - Method in interface at.jku.ssw.fp.sect11_3.check4j.Gen
Creates a generator which generates values which are created by mapping the values from this generator using the mapping function.
flatMap(Function<? super E, ? extends FList<? extends R>>) - Method in class at.jku.ssw.fp.coll.FList
Returns a functional list consisting of the results of replacing each element of this list with the contents of a mapped list produced by applying the provided mapping function to each element.
flatMap(Function<? super E, ? extends FSet<R>>) - Method in class at.jku.ssw.fp.coll.FSet
Returns a functional set consisting of the results of replacing each element of this set with the contents of a mapped set produced by applying the provided mapping function to each element.
flatMap(Function<? super E, ? extends Parser<? extends R>>) - Method in interface at.jku.ssw.fp.sect06_3.Parser
The monadic flatMap operator for parsers.
flatMap(Function<? super T, ? extends Id<? extends R>>) - Method in class at.jku.ssw.fp.sect06_3_4.Id
Monad operator.
flatMap(Function<A, Logged<B>>) - Method in class at.jku.ssw.fp.sect06_3_4.Logged
Monad operator mapping value and concatenating log strings.
flight - Variable in class at.jku.ssw.fp.airline.Offer
The flight of the offer
Flight - Class in at.jku.ssw.fp.airline
Class representing a flight.
Flight(String, String, Airline, String, LocalDateTime, int) - Constructor for class at.jku.ssw.fp.airline.Flight
Constructor creating a flight.
flightNumber - Variable in class at.jku.ssw.fp.airline.Flight
The flight number
FList<E> - Class in at.jku.ssw.fp.coll
Generic functional list implementation.
FList() - Constructor for class at.jku.ssw.fp.coll.FList
 
FList.Builder<E> - Class in at.jku.ssw.fp.coll
Mutable builder for building functional lists.
FList.Cons<E> - Class in at.jku.ssw.fp.coll
Class representing a functional list with a head element and tail list.
FList.Nil<E> - Class in at.jku.ssw.fp.coll
Class for the empty list.
fListShrinker() - Static method in class at.jku.ssw.fp.sect11_3.check4j.Shrinkers
A shrinker for FList lists.
fListShrinker(Shrinker<E>) - Static method in class at.jku.ssw.fp.sect11_3.check4j.Shrinkers
A shrinker for FList lists where a given shrinker is used for shrinking the elements.
FListTest - Class in at.jku.ssw.fp.coll.test
Tests of FList
FListTest() - Constructor for class at.jku.ssw.fp.coll.test.FListTest
 
flow - Variable in class at.jku.ssw.fp.sect05_4.dsl.SystemUnderCtrl
The variable for the inflow to the tank
FM - at.jku.ssw.fp.sect06_2.Course
 
fmultRec(Parser<R>) - Static method in interface at.jku.ssw.fp.sect06_3.Parser
Recursive variant of Parser.mult(Parser).
fn - Variable in class at.jku.ssw.fp.sect06_3_4.Reader
The reader function
forAll(Gen<A>, Predicate<? super A>) - Static method in class at.jku.ssw.fp.sect11_3.check4j.Property
Creates a property object from a generator and predicate.
forAll(Gen<A>, Predicate<? super A>, Shrinker<A>) - Static method in class at.jku.ssw.fp.sect11_3.check4j.Property
Creates a property object from a generator, predicate and shrinker.
forEach(Consumer<? super E>) - Method in class at.jku.ssw.fp.coll.FList
Performs an action for each element of this list.
forEach(Consumer<? super E>) - Method in class at.jku.ssw.fp.coll.FSet
Performs an action for each element of this set.
forEach(List<E>, Consumer<E>) - Static method in class at.jku.ssw.fp.sect04_0.Demo_ForEach
Executes an action for the elements of a list.
frame - Static variable in class at.jku.ssw.fp.sect10_1.Demo4_ClickObservable
 
frame - Variable in class at.jku.ssw.fp.sect10_5.Demo4_ObserveOn
 
Franz - at.jku.ssw.fp.sect06_2.Student
 
from - Variable in class at.jku.ssw.fp.airline.Flight
The origin of the flight
from - Variable in class at.jku.ssw.fp.sect04_3.Edge
The source node of the edge
from - Variable in class at.jku.ssw.fp.sect04_3.puzzle.Move
the from position
from(int...) - Static method in class at.jku.ssw.fp.sect04_3.puzzle.Puzzle
Creates a puzzle state from sequence of numbers.
from(Tree<E>) - Static method in interface at.jku.ssw.fp.sect06_2.Reducible
Creates a reducible object for an tree object.
from(Iterable<E>) - Static method in interface at.jku.ssw.fp.sect06_2.Reducible
Creates a reducible object for an iterable object.
fromJSON(String) - Static method in class at.jku.ssw.fp.sect10_3.WeatherData
Creates an weather data object from a JSON string.
fromPrice(double) - Static method in enum at.jku.ssw.fp.sect07_1.PriceGroups
Returns the group based on a price value.
FSet<E> - Class in at.jku.ssw.fp.coll
Generic functional set implementation.
FSet() - Constructor for class at.jku.ssw.fp.coll.FSet
 
FSet.Builder<E> - Class in at.jku.ssw.fp.coll
Mutable builder for building functional sets.
FSet.Cons<E> - Class in at.jku.ssw.fp.coll
Class representing a functional set.
FSet.Empty<E> - Class in at.jku.ssw.fp.coll
Class for the empty set.
fst - Variable in class at.jku.ssw.fp.util.Pair
The first value.
FULL_LEVEL - Static variable in class at.jku.ssw.fp.sect05_4.dsl.LevelControl
Constants for full und empty level and constant inflow
func - Variable in class at.jku.ssw.fp.util.TypeTestFunction
The function to apply if the test is successful.
Function<T,​R> - Interface in at.jku.ssw.fp.sect02_1
Functional interface mapping a value to a result.
FunctionWithExcpt<T,​R,​X extends Exception> - Interface in at.jku.ssw.fp.sect02_3
Functional interface with exception
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