MCPcopy Create free account
hub / github.com/BasisResearch/lean.py / RotateLeft

Function RotateLeft

lean_py/z3/core.py:1624–1626  ·  view source on GitHub ↗

Rotate left.

(a: BitVecRef, b: BitVecRef | int)

Source from the content-addressed store, hash-verified

1622
1623
1624def RotateLeft(a: BitVecRef, b: BitVecRef | int) -> BitVecRef:
1625 """Rotate left."""
1626 return a._binop(BinOp.ROTL, b)
1627
1628
1629def RotateRight(a: BitVecRef, b: BitVecRef | int) -> BitVecRef:

Calls 1

_binopMethod · 0.45