Passed
Push — master ( 6c4303...6fc6be )
by ertugrul
01:00
created

every.go   A

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A gotil.Every 0 2 1
1
package gotil
2
3
import (
4
	"github.com/gotilty/gotil/internal"
5
)
6
7
func Every(val, f interface{}) (bool, error) {
8
	return internal.Every(val, f)
9
}
10