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