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