You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typeIter[Tany] interface {
// Next returns next N items of iterator when it is not empty.// When iterator is empty, nil is returned.// When n = [ALL] or n is greater than number of remaining elements,// all remaining are returned.//// The returned slice is owned by caller. So implementer should return a// newly allocated slice if needed.//// Passing in a negative n (except [ALL]) is undefined behavior.Next(nint) []T
}
Does the RTA algorithm not support generics?
The text was updated successfully, but these errors were encountered:
Hello, i am using go-callvis with the rta algorithm. However i got a panic with it:
it seems that the panic occurs on following code:
Does the RTA algorithm not support generics?
The text was updated successfully, but these errors were encountered: