This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-27
Channels
- # adventofcode (1)
- # announcements (5)
- # babashka (11)
- # beginners (41)
- # biff (16)
- # calva (2)
- # clj-together (1)
- # clojure (9)
- # clojure-austin (8)
- # clojure-doc (1)
- # clojure-europe (45)
- # clojurescript (4)
- # clr (14)
- # datomic (13)
- # figwheel (1)
- # fulcro (11)
- # introduce-yourself (2)
- # lsp (31)
- # malli (6)
- # off-topic (3)
- # releases (2)
- # reveal (8)
- # schema (1)
- # shadow-cljs (13)
- # spacemacs (10)
- # timbre (8)
- # transit (3)
- # xtdb (5)
hey, does anyone have a quick snippet to express schema for a map, where key has to be present, but can be either nil or some-val. I tried wrapping with maybe, but then it falls to accepting nil-punned (get) neglecting :required on the subschema. I was thinking of maybe doing either on null and s/Str subschemas, both having :required set true - but cannot find anything matching "must be nil" (schema/Any is to permissive).