package remap import ( `errors` ) var ( ErrInvalidIdxPair error = errors.New("invalid index pair; [1] must be >= [0]") ErrNoStr error = errors.New("no string to slice/reslice/subslice") ErrShortStr error = errors.New("string too short to slice/reslice/subslice") )