intset

package
v0.0.0-...-d153a89 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 24, 2019 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Overview

*

  • IntSet で使われている個々のワードの型は uint64 ですが、64ビット演算は 32ビットプラットフォーム上では非効率かもしれません。
  • プラットフォームに対して最も効率的な符号なし変数である uint 型を使うようにプログラムを修正しなさい。
  • 64で割る代わりに、unit の実質的サイズのビット数である 32 あるいは 64 を保持する定数を定義しなさい。
  • そのためには、おそらくかなり賢い式 32 << (^uint(0) >> 63) を使えます。

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type IntSet

type IntSet struct {
	// contains filtered or unexported fields
}

func (*IntSet) Add

func (s *IntSet) Add(x int)

func (*IntSet) AddAll

func (s *IntSet) AddAll(xs ...int)

func (*IntSet) Clear

func (s *IntSet) Clear()

func (*IntSet) Copy

func (s *IntSet) Copy() *IntSet

func (*IntSet) DifferenceWith

func (s *IntSet) DifferenceWith(t *IntSet)

func (*IntSet) Elems

func (s *IntSet) Elems() []int

func (*IntSet) Has

func (s *IntSet) Has(x int) bool

func (*IntSet) IntersectWith

func (s *IntSet) IntersectWith(t *IntSet)

func (*IntSet) Len

func (s *IntSet) Len() int

func (*IntSet) Remove

func (s *IntSet) Remove(x int)

func (*IntSet) String

func (s *IntSet) String() string

func (*IntSet) SymmetricDifference

func (s *IntSet) SymmetricDifference(t *IntSet)

func (*IntSet) UnionWith

func (s *IntSet) UnionWith(t *IntSet)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL