MCPcopy Create free account
hub / github.com/SWI-Prolog/packages-jpl / Dict

Method Dict

src/main/java/org/jpl7/Dict.java:71–74  ·  view source on GitHub ↗

Creates a dictionary structure @param tag the tag of the dict as an Atom or Variable @param map a mapping from Atoms to terms

(Term tag, Map<Atom, Term> map)

Source from the content-addressed store, hash-verified

69 *
70 */
71 public Dict(Term tag, Map<Atom, Term> map) {
72 this.tag = tag;
73 this.map = map;
74 }
75
76
77 public Dict(String dict) {

Callers

nothing calls this directly

Calls 3

listToTermArrayMethod · 0.95
oneSolutionMethod · 0.80
putMethod · 0.80

Tested by

no test coverage detected