com.google.callbuilder.Unification.Atom

Here are the examples of the java api class com.google.callbuilder.Unification.Atom taken from open source projects.

1. AtomAndVarRegistry#atom()

Project: CallBuilder
File: AtomAndVarRegistry.java
private Atom atom(String codeRepresentation) {
    Atom atom = codeToAtoms.get(codeRepresentation);
    if (atom == null) {
        atom = new Atom();
        atomsToCode.put(atom, codeRepresentation);
        codeToAtoms.put(codeRepresentation, atom);
    }
    return atom;
}