Uses of Class
com.mackenziehigh.sexpr.SourceLocation
Packages that use SourceLocation
Package
Description
Symbolic Expressions.
Symbolic-Expression related Exception Types.
-
Uses of SourceLocation in com.mackenziehigh.sexpr
Fields in com.mackenziehigh.sexpr declared as SourceLocationMethods in com.mackenziehigh.sexpr that return SourceLocationModifier and TypeMethodDescriptionSAtom.location()
This method retrieves an object describing the source from which this object we obtained.Sexpr.location()
This method retrieves an object describing the source from which this object we obtained.SList.location()
This method retrieves an object describing the source from which this object we obtained.Methods in com.mackenziehigh.sexpr with parameters of type SourceLocationModifier and TypeMethodDescriptionstatic SList
SList.copyOf
(SourceLocation location, Iterable<? extends Sexpr<?>> list) Factory Method.static SList
SList.copyOf
(SourceLocation location, Iterator<? extends Sexpr<?>> stream) Factory Method.static SList
SList.copyOf
(SourceLocation location, Stream<? extends Sexpr<?>> stream) Factory Method.static SAtom
SAtom.fromBoolean
(SourceLocation location, boolean value) Factory Method.static SAtom
SAtom.fromByte
(SourceLocation location, byte value) Factory Method.static SAtom
SAtom.fromChar
(SourceLocation location, char value) Factory Method.static SAtom
SAtom.fromDouble
(SourceLocation location, double value) Factory Method.static SAtom
SAtom.fromFloat
(SourceLocation location, float value) Factory Method.static SAtom
SAtom.fromInt
(SourceLocation location, int value) Factory Method.static SAtom
SAtom.fromLong
(SourceLocation location, long value) Factory Method.static SList
SList.fromMap
(SourceLocation location, Map<? extends Sexpr<?>, ? extends Sexpr<?>> map) This method creates a new two-dimensional list from the given map.static SList
SList.fromMap
(SourceLocation location, Map<? extends Sexpr<?>, ? extends Sexpr<?>> map, Sexpr<?> separator) This method creates a new two-dimensional list from the given map.static SAtom
SAtom.fromShort
(SourceLocation location, short value) Factory Method.static SAtom
SAtom.fromString
(SourceLocation location, String value) Factory Method.static SList
SList.of
(SourceLocation location, Sexpr<?>... elements) Factory Method. -
Uses of SourceLocation in com.mackenziehigh.sexpr.exceptions
Methods in com.mackenziehigh.sexpr.exceptions that return SourceLocationConstructors in com.mackenziehigh.sexpr.exceptions with parameters of type SourceLocation