X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.scl.runtime%2Fscl%2FMList.scl;h=fc4f941144a69950360b1895359f1d5a7a471a0e;hp=6cafe6bf4426b6091f8b28488008a451cface46b;hb=d65c521432930a15629ee2bedd8cafd6673b2e9a;hpb=7dd9579f2b8e3eabdad63c8cce46d5c7ff2e42fd diff --git a/bundles/org.simantics.scl.runtime/scl/MList.scl b/bundles/org.simantics.scl.runtime/scl/MList.scl index 6cafe6bf4..fc4f94114 100644 --- a/bundles/org.simantics.scl.runtime/scl/MList.scl +++ b/bundles/org.simantics.scl.runtime/scl/MList.scl @@ -9,6 +9,7 @@ importJava "java.util.List" where size :: T a -> Integer isEmpty :: T a -> Boolean get :: T a -> Integer -> a + set :: T a -> Integer -> a -> Maybe a add :: T a -> a -> () addAll :: T a -> [a] -> ()