本站源代码
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
438B

  1. // +build !go1.9
  2. // +build !amd64 appengine
  3. package bitset
  4. func popcntSlice(s []uint64) uint64 {
  5. return popcntSliceGo(s)
  6. }
  7. func popcntMaskSlice(s, m []uint64) uint64 {
  8. return popcntMaskSliceGo(s, m)
  9. }
  10. func popcntAndSlice(s, m []uint64) uint64 {
  11. return popcntAndSliceGo(s, m)
  12. }
  13. func popcntOrSlice(s, m []uint64) uint64 {
  14. return popcntOrSliceGo(s, m)
  15. }
  16. func popcntXorSlice(s, m []uint64) uint64 {
  17. return popcntXorSliceGo(s, m)
  18. }
上海开阖软件有限公司 沪ICP备12045867号-1