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

24 行
428B

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