From 1505f00357acb54c53088169c7ef8cd4afea67a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingy=20d=C3=B6t=20Net?= <ingy@ingy.net> Date: Wed, 29 Jan 2025 12:49:56 -0800 Subject: [PATCH] std: Add L+ M+ O+ and V+ constructors --- core/src/ys/std.clj | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/ys/std.clj b/core/src/ys/std.clj index 548b3691a..64eaac61f 100644 --- a/core/src/ys/std.clj +++ b/core/src/ys/std.clj @@ -302,6 +302,9 @@ (intern 'ys.std 'T to-type) (intern 'ys.std 'V to-vec) +(intern 'ys.std 'L+ list) +(intern 'ys.std 'M+ hash-map) +(intern 'ys.std 'O+ omap) (intern 'ys.std 'V+ vector)