From 8113936c9978a659a77d6bd02d3fc78b6672ba62 Mon Sep 17 00:00:00 2001 From: Sanegv <43825023+Sanegv@users.noreply.github.com> Date: Sat, 25 May 2024 22:58:24 +0200 Subject: [PATCH] removed the function --- interpreter/eclaType/list.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/interpreter/eclaType/list.go b/interpreter/eclaType/list.go index fc1b8a9..1a18441 100644 --- a/interpreter/eclaType/list.go +++ b/interpreter/eclaType/list.go @@ -354,15 +354,6 @@ func (l *List) GetValueType() string { // utils Functions for lists trainmen -func CheckTypeOfList(l *List, t string) bool { - for _, v := range l.Value { - if v.GetType() != l.Typ { - return false - } - } - return true -} - func IsList(t string) bool { // via []int or []string [][]int ,string int map[string]int []map[string]int if !(len(t) <= 2) {