com.github.basking2.sdsai.itrex.packages.StringPackage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdsai-itrex Show documentation
Show all versions of sdsai-itrex Show documentation
An S-Expression inspiried library focused on iterators.
package com.github.basking2.sdsai.itrex.packages;
import com.github.basking2.sdsai.itrex.functions.FunctionInterface;
import com.github.basking2.sdsai.itrex.functions.StringConcatFunction;
import com.github.basking2.sdsai.itrex.functions.StringJoinFunction;
import com.github.basking2.sdsai.itrex.functions.StringSplitFunction;
import java.util.List;
/**
* The string package of functions.
*
* Evaluate: [import com.github.basking2.sdsai.itrex.packages.StringPackage]
*/
public class StringPackage {
public static final String __package = "string";
public static final FunctionInterface join = new StringJoinFunction();
public static final FunctionInterface concat = new StringConcatFunction();
public static final FunctionInterface> split = new StringSplitFunction();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy