Exemplo n.º 1
0
func (db *Database) AddAllPositions(s set.Set) {
	for i, v := range db.FullSequence {
		if v != ZeroToken {
			s.Add(i)
		}
	}
}