Home
last modified time | relevance | path

Searched refs:replace_slots (Results 1 – 3 of 3) sorted by relevance

/dports/math/py-mathics/Mathics3-2.2.0/mathics/builtin/
H A Dfunctional.py74 return body.replace_slots(args, evaluation)
/dports/math/py-mathics/Mathics3-2.2.0/mathics/builtin/numbers/
H A Dcalculus.py703 poly = body.replace_slots([f, Symbol("_1")], evaluation)
734 body = f.leaves[0].replace_slots([f, Symbol("_1")], None)
/dports/math/py-mathics/Mathics3-2.2.0/mathics/core/
H A Dexpression.py1776 def replace_slots(self, slots, evaluation): member in Expression
1800 self._head.replace_slots(slots, evaluation),
1801 *[leaf.replace_slots(slots, evaluation) for leaf in self._leaves]
1930 def replace_slots(self, slots, evaluation) -> "Atom": member in Atom