Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for encodingSink (0.06 sec)

  1. guava/src/com/google/common/io/BaseEncoding.java

      /**
       * Returns a {@code ByteSink} that writes base-encoded bytes to the specified {@code CharSink}.
       */
      @J2ktIncompatible
      @GwtIncompatible // ByteSink,CharSink
      public final ByteSink encodingSink(CharSink encodedSink) {
        checkNotNull(encodedSink);
        return new ByteSink() {
          @Override
          public OutputStream openStream() throws IOException {
            return encodingStream(encodedSink.openStream());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top