Ejemplo n.º 1
0
func w(ce ...int) Weights {
	return Weights{collate.W(ce...)}
}
Ejemplo n.º 2
0
func w(ce ...int) collate.Weights {
	return collate.W(ce...)
}
Ejemplo n.º 3
0
func wsq(s, q int) collate.Weights {
	return collate.W(0, s, defaults.Tertiary, q)
}
Ejemplo n.º 4
0
func wq(q int) collate.Weights {
	return collate.W(0, 0, 0, q)
}
Ejemplo n.º 5
0
func wpq(p, q int) collate.Weights {
	return collate.W(p, defaults.Secondary, defaults.Tertiary, q)
}