1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-21 12:44:17 -04:00
v2fly/common/predicate/arrays.go

11 lines
141 B
Go
Raw Normal View History

2016-05-24 16:09:22 -04:00
package predicate
func BytesAll(array []byte, b byte) bool {
for _, v := range array {
if v != b {
return false
}
}
return true
}