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).UnionWith はワード単位のビット和算子である | を使って二つのビットの和集合を計算しています。
  • セット操作に対応するメソッド IntersectWith, DifferenceWith, SymmetricDifference を実装しなさい。
  • (二つの集合の対称差 (symmetric difference) は、どちらかの集合にはあるが、両方にはない要素を含む集合です。)

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) 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