gitlab.com/evatix-go/core@v1.3.55/coredata/corestr/AllIndividualsLengthOfSimpleSlices.go (about)

     1  package corestr
     2  
     3  func AllIndividualsLengthOfSimpleSlices(items ...*SimpleSlice) int {
     4  	length := 0
     5  
     6  	if items == nil || len(items) == 0 {
     7  		return length
     8  	}
     9  
    10  	for _, simpleSlice := range items {
    11  		length += simpleSlice.Length()
    12  	}
    13  
    14  	return length
    15  }