You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ICL Readers can be created with ReaderOptions, which makes it possible to implement custom bufio.SplitFuncs to handle vendor-specific ICL specifications/variations. These split functions aren't very intuitive to implement, so it would be helpful if ICL had a documentation section explaining how they work, and how to write them for use with its Reader.
Note: The Reader's scanner is an unexported field, so a SetSplitFunc(split bufio.SplitFunc) method needs to be implemented so consumers of this library can implement their own SplitFuncs using ICL ReaderOptions.
The text was updated successfully, but these errors were encountered:
ICL Readers can be created with ReaderOptions, which makes it possible to implement custom
bufio.SplitFunc
s to handle vendor-specific ICL specifications/variations. These split functions aren't very intuitive to implement, so it would be helpful if ICL had a documentation section explaining how they work, and how to write them for use with its Reader.Helpful links:
Note: The Reader's
scanner
is an unexported field, so aSetSplitFunc(split bufio.SplitFunc)
method needs to be implemented so consumers of this library can implement their ownSplitFunc
s using ICLReaderOptions
.The text was updated successfully, but these errors were encountered: