We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c02489 commit d34a8bbCopy full SHA for d34a8bb
plutus-tx/src/PlutusTx/Prelude.hs
@@ -66,6 +66,17 @@ module PlutusTx.Prelude (
66
indexByteString,
67
emptyByteString,
68
decodeUtf8,
69
+ andByteString,
70
+ orByteString,
71
+ xorByteString,
72
+ complementByteString,
73
+ -- ** Bit operations
74
+ readBit,
75
+ writeBits,
76
+ shiftByteString,
77
+ rotateByteString,
78
+ countSetBits,
79
+ findFirstSetBit,
80
-- * Hashes and Signatures
81
sha2_256,
82
sha3_256,
@@ -114,7 +125,9 @@ module PlutusTx.Prelude (
114
125
fromBuiltin,
115
126
toBuiltin,
116
127
fromOpaque,
117
- toOpaque
128
+ toOpaque,
129
+ integerToByteString,
130
+ byteStringToInteger
118
131
) where
119
132
120
133
import Data.String (IsString (..))
0 commit comments