func (c *icuUTF8conv) Compare(sa, sb Input) int { a := encodeUTF16(sa.UTF8) b := encodeUTF16(sb.UTF8) return int(C.ucol_strcoll(c.col, icuUCharP(a), icuULen(a), icuUCharP(b), icuULen(b))) }
func (c *icuUTF16) Compare(a, b Input) int { return int(C.ucol_strcoll(c.col, icuUCharP(a.UTF16), icuULen(a.UTF16), icuUCharP(b.UTF16), icuULen(b.UTF16))) }