Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for patreon (0.26 sec)

  1. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        public Ansi newline() {
            flushAttributes();
            builder.append(System.lineSeparator());
            return this;
        }
    
        public Ansi format(String pattern, Object... args) {
            flushAttributes();
            builder.append(String.format(pattern, args));
            return this;
        }
    
        /**
         * Applies another function to this Ansi instance.
         *
         * @param fun the function to apply
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top