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

gotil.Every   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
nop 2
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