Fix #1546: add .contains for vector and lazy-seq
This commit is contained in:
parent
d2fece3f80
commit
a9be9d02ea
2 changed files with 5 additions and 2 deletions
|
|
@ -14,6 +14,7 @@ in the CfP!
|
|||
## Unreleased
|
||||
|
||||
- [#1544](https://github.com/babashka/babashka/issues/1544): `:local/root` in script-adjacent bb.edn should resolve relative to script
|
||||
- [#1546](https://github.com/babashka/babashka/issues/1546): add `.contains` for vector and lazy-seq
|
||||
|
||||
## 1.3.178 (2023-04-18)
|
||||
|
||||
|
|
|
|||
|
|
@ -130,10 +130,12 @@
|
|||
clojure.lang.PersistentHashMap
|
||||
{:fields [{:name "EMPTY"}]}
|
||||
clojure.lang.APersistentVector
|
||||
{:methods [{:name "indexOf"}]}
|
||||
{:methods [{:name "indexOf"}
|
||||
{:name "contains"}]}
|
||||
clojure.lang.LazySeq
|
||||
{:allPublicConstructors true,
|
||||
:methods [{:name "indexOf"}]}
|
||||
:methods [{:name "indexOf"}
|
||||
{:name "contains"}]}
|
||||
clojure.lang.ILookup
|
||||
{:methods [{:name "valAt"}]}
|
||||
clojure.lang.IPersistentMap
|
||||
|
|
|
|||
Loading…
Reference in a new issue