JuliaObjDictΒΆ
jobject.spad line 586 [edit on github]
Convenience domain for Julia Dictionaries, objects that are used within Julia, and not directly by the underlying FriCAS Common LISP. It is not meant to be used directly, but rather for returned value or function argument for example.
- coerce: % -> OutputForm
from CoercibleTo OutputForm
- convert: % -> String
from ConvertibleTo String
- delete!: (%, Any) -> JuliaObject
delete!(dict, key)
delete the mapping corresponding to the the key ofdict
.
- delete!: (%, JuliaSymbol) -> JuliaObject
delete!(dict, key)
delete the mapping corresponding to the the key ofdict
.
- elt: (%, Any) -> JuliaObject
elt(dict, key)
returns the value associated to the key ofdict
.- elt: (%, Integer) -> JuliaObject
from JuliaObjectAggregate
- elt: (%, JuliaSymbol) -> JuliaObject
elt(dict, sym)
returns the value associated to the keysym
ofdict
.
- jdict: String -> %
jdict(str)
returns a Julia Dict from the Julia commandstr
.
- 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: (%, Any) -> JuliaObject
qelt(dict, key)
returns the value associated to the key ofdict
. No checks are done regarding the existence of the key at the FriCAS level. Returns the Julia missing value if the key does not exist.- qelt: (%, Integer) -> JuliaObject
from JuliaObjectAggregate
- qelt: (%, JuliaSymbol) -> JuliaObject
qelt(dict, sym)
returns the value associated to the keysym
ofdict
. No checks are done regarding the existence of the keysym
at the FriCAS level. Returns the Julia missing value if the key does not exist.
- setelt!: (%, Any, JuliaObject) -> %
setelt!(dict, key, val)
sets the val to thekey
ofdict
. If thekey
does not exist it will be created.
- setelt!: (%, JuliaSymbol, JuliaObject) -> %
setelt!(dict, key, val)
sets the val to thekey
ofdict
. If thekey
does not exist it will be created.
- size?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- string: % -> String
from JuliaObjectType