From f8236200592d83f9db90d6e3dfae2946a8062cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8C=97=E9=9C=B2?= <69190413+illusory0x0@users.noreply.github.com> Date: Fri, 7 Feb 2025 12:47:37 +0800 Subject: [PATCH] moon fmt --- sorted_map/map.mbt | 1 + 1 file changed, 1 insertion(+) diff --git a/sorted_map/map.mbt b/sorted_map/map.mbt index 85cf02ffb..63ad05d39 100644 --- a/sorted_map/map.mbt +++ b/sorted_map/map.mbt @@ -47,6 +47,7 @@ pub fn from_array[K : Compare, V](entries : Array[(K, V)]) -> T[K, V] { entries.each(fn(e) { map.add(e.0, e.1) }) map } + ///| /// Inserts a key-value pair. pub fn add[K : Compare, V](self : T[K, V], key : K, value : V) -> Unit {