JuliaObjectAggregate¶
jobject.spad line 127 [edit on github]
Category for arbitrary Julia aggregates.
- #: % -> NonNegativeInteger if % has finiteAggregate
from Aggregate
- coerce: % -> OutputForm
from CoercibleTo OutputForm
- convert: % -> String
from ConvertibleTo String
- elt: (%, Integer) -> JuliaObject
elt(obj, ind)
returns the element at index ind ofobj
. It can be used, for example, with a Tuple or a Vector.
- elt: (%, JuliaSymbol) -> JuliaObject
elt(obj, sym)
returns the propertysym
ofobj
. For example: example{ret := jlApply(“svd”,jobject(“rand(4,4)”)); ret.U}
- jlAbout: % -> Void
from JuliaObjectType
- jlApply: (String, %) -> %
from JuliaObjectType
- jlApply: (String, %, %) -> %
from JuliaObjectType
- jlApply: (String, %, %, %) -> %
from JuliaObjectType
- jlApply: (String, %, %, %, %) -> %
from JuliaObjectType
- jlApply: (String, %, %, %, %, %) -> %
from JuliaObjectType
- jlApply: (String, %, %, %, %, %, %) -> %
from JuliaObjectType
- jlId: % -> String
from JuliaObjectType
- jlRef: % -> SExpression
from JuliaObjectType
- jlref: String -> %
from JuliaObjectType
- jlType: % -> String
from JuliaObjectType
- latex: % -> String
from SetCategory
- less?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- more?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- mutable?: % -> Boolean
from JuliaObjectType
- nothing?: % -> Boolean
from JuliaObjectType
- qelt: (%, Integer) -> JuliaObject
qelt(obj, ind)
returns the element at index ind ofobj
. It can be used, for example, with a Tuple or a Vector.
- qelt: (%, JuliaSymbol) -> JuliaObject
qelt(obj, sym)
returns the propertysym
ofobj
. No checks are done regarding the existence of thesym
property. If it does not exist, Julia throws an error.
- size?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- string: % -> String
from JuliaObjectType