From d573528f3b70d2c4af19004a10ac3d160dd5d786 Mon Sep 17 00:00:00 2001 From: Adam Jeniski Date: Tue, 4 Nov 2025 18:33:05 -1000 Subject: [PATCH] update IColl asbstractions --- list/list.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/list/list.go b/list/list.go index df18071..b5934a5 100644 --- a/list/list.go +++ b/list/list.go @@ -8,6 +8,8 @@ import ( type ICollection interface { Conj(data any) IList IsEmpty() bool + String() string + Len() int } type ISeq interface { @@ -18,8 +20,6 @@ type ISeq interface { type IList interface { ISeq ICollection - String() string - Len() int } type EmptyList struct{}