// Copyright Earl Warren // Copyright Loïc Dachary // Copyright twenty-panda // SPDX-License-Identifier: MIT package f3 type CI struct { Common } func (o CI) Equal(other CI) bool { return o.Common.Equal(other.Common) } func (o *CI) Clone() Interface { clone := &CI{} *clone = *o return clone }