Package hydra.lib.strings
Class SplitOn
- java.lang.Object
-
- hydra.tools.PrimitiveFunction
-
- hydra.lib.strings.SplitOn
-
public class SplitOn extends PrimitiveFunction
-
-
Constructor Summary
Constructors Constructor Description SplitOn()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.function.Function<java.lang.String,java.util.List<java.lang.String>>
apply(java.lang.String delim)
static java.util.List<java.lang.String>
apply(java.lang.String delim, java.lang.String string)
Apply the function to both arguments.protected java.util.function.Function<java.util.List<Term>,Flow<Graph,Term>>
implementation()
A dynamic/interpreted implementation of the functionName
name()
The unique name of the primitive functionTypeScheme
type()
The datatype of the primitive function-
Methods inherited from class hydra.tools.PrimitiveFunction
term, toNative
-
-
-
-
Method Detail
-
name
public Name name()
Description copied from class:PrimitiveFunction
The unique name of the primitive function- Specified by:
name
in classPrimitiveFunction
-
type
public TypeScheme type()
Description copied from class:PrimitiveFunction
The datatype of the primitive function- Specified by:
type
in classPrimitiveFunction
-
implementation
protected java.util.function.Function<java.util.List<Term>,Flow<Graph,Term>> implementation()
Description copied from class:PrimitiveFunction
A dynamic/interpreted implementation of the function- Specified by:
implementation
in classPrimitiveFunction
-
apply
public static java.util.function.Function<java.lang.String,java.util.List<java.lang.String>> apply(java.lang.String delim)
-
apply
public static java.util.List<java.lang.String> apply(java.lang.String delim, java.lang.String string)
Apply the function to both arguments. Note: the delimiter is not interpreted as a regular expression; it is simply a literal string. See Haskell's Data.List.Split.
-
-