aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/slice.go
blob: 67f43705dc8ec251ca81402165518ee12248f7e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package ethutil

import (
    "strconv"
)

// Helper function for comparing slices
func CompareIntSlice(a, b []int) bool {
    if len(a) != len(b) {
        return false
    }
    for i, v := range a {
        if v != b[i] {
            return false
        }
    }
    return true
}

// Returns the amount of nibbles that match each other from 0 ...
func MatchingNibbleLength(a, b []int) int {
    i := 0
    for CompareIntSlice(a[:i+1], b[:i+1]) && i < len(b) {
        i += 1
    }

    return i
}