LSTS Language Reference Website
View the Project on GitHub Lambda-Mountain-Compiler-Backend/lsts-language-reference
cons : (x, List<x>) -> List<x>head : List<x> -> xtail : List<x> -> List<x>+ : (List<x>, List<x>) -> List<x>.length : List<x> -> USize.reverse : List<x> -> List<x>tail : List<x> -> List<x>.unique : List<x> -> List<x>.sort : List<x> -> List<x>.into : (Vector<t>, Type<String>) -> String.into : (List<t>, Type<Vector<t>>) -> Vector<t>[] : (List<x>, USize) -> x== : (List<x>, List<x>) -> Bool!= : (List<x>, List<x>) -> Bool< : (List<x>, List<x>) -> Bool<= : (List<x>, List<x>) -> Bool> : (List<x>, List<x>) -> Bool>= : (List<x>, List<x>) -> Bool.contains : (List<x>, x) -> Bool.join : (List<x>, String) -> String.next : &List<x> -> Maybe<x>