We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the file system interface provides the following methods:
fun sink(...): RawSink fun source(): RawSource
yet for user-specific needs, one most likely needs Sink and Source interfaces that we encourage over Raw counterparts.
Sink
Source
Raw
It would be nice to have something like:
// Part of the core interface fun sink(...): Sink = rawSink().buffered() fun rawSink(...): RawSink = ...
and the corresponding source counterpart
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the file system interface provides the following methods:
yet for user-specific needs, one most likely needs
Sink
andSource
interfaces that we encourage overRaw
counterparts.It would be nice to have something like:
and the corresponding source counterpart
The text was updated successfully, but these errors were encountered: