func()

in lunes.go [443:449]


func (l *ErrLayoutMismatch) Is(err error) bool {
	var target *ErrLayoutMismatch
	if ok := errors.As(err, &target); ok {
		return l.Value == target.Value && l.LayoutElem == target.LayoutElem
	}
	return false
}