Skip to content

Commit b43f14e

Browse files
sergeskumichaelpj
andauthored
[PlutusTx.List]: Fix take function (IntersectMBO#3948)
* Fix PlutusTx.List.take * Update plutus-tx/src/PlutusTx/List.hs Co-authored-by: Michael Peyton Jones <[email protected]>
1 parent 71acccb commit b43f14e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plutus-tx/src/PlutusTx/List.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ module PlutusTx.List (
2222
import PlutusTx.Bool ((||))
2323
import qualified PlutusTx.Builtins as Builtins
2424
import PlutusTx.Eq (Eq, (==))
25-
import PlutusTx.Ord ((<))
25+
import PlutusTx.Ord ((<), (<=))
2626
import PlutusTx.Trace (traceError)
2727
import Prelude hiding (Eq (..), all, any, elem, filter, foldl, foldr, head, length, map, null,
28-
reverse, tail, take, zip, (!!), (&&), (++), (<), (||))
28+
reverse, tail, take, zip, (!!), (&&), (++), (<), (<=), (||))
2929

3030
{- HLINT ignore -}
3131

0 commit comments

Comments
 (0)