Find the first PartialFunction in the specified sequence that is defined at the specified value, apply it to that value and return the result or throw a MatchError on failure to find such a function.
Find the first PartialFunction in the specified sequence that is defined at the specified value, apply it to that value and return the result or throw a MatchError on failure to find such a function.
the value to use to test each PartialFunction
the sequence to search for a PartialFunction defined at value
the result of applying any such PartialFunction to the specified value.
on failure to find such a PartialFunction
Curried constructor for NamedPF
Find the first PartialFunction in the specified sequence that is defined at the specified value, apply it to that value and return the result in a Full Box if found; return Empty otherwise
Find the first PartialFunction in the specified sequence that is defined at the specified value, apply it to that value and return the result in a Full Box if found; return Empty otherwise
the value to use to test each PartialFunction
the sequence to search for a PartialFunction defined at value
a Full Box containing the result of applying the first PartialFunction which is defined at the specified value to that value, or Empty if no such PartialFunction is found
Find the first partial function in the specified sequence that is defined at the given value.
Find the first partial function in the specified sequence that is defined at the given value.
the value to use to test each PartialFunction
the sequence to search for a PartialFunction defined at value
a Full Box containing the PartialFunction if found, or Empty othewise.
Determine whether any PartialFunction in the specified sequence is defined at the specified value.
Determine whether any PartialFunction in the specified sequence is defined at the specified value.
the value to use to test each PartialFunction
the sequence to search for a PartialFunction defined at value
whether such a PartialFunction is found