About 400 results
Open links in new tab
  1. 4.4 Strings - Racket

    The racket/format library provides functions for converting Racket values to strings. In addition to features like padding and numeric formatting, the functions have the virtue of being shorter than …

  2. The Racket Reference

    This manual defines the core Racket language and describes its most prominent libraries. The companion manual The Racket Guide provides a friendlier (though less precise and less complete) …

  3. The Racket Guide

    From Chapter 3 on, this guide dives into details— covering much of the Racket toolbox, but leaving precise details to The Racket Reference and other reference manuals.

  4. 7.4 Strings - docs.racket-lang.org

    Although Racket supports mutable strings, the String annotation recognizes only immutable strings, and Rhombus operations generate immutable strings. Some operations allow mutable strings as input, …

  5. 3.4 Strings (Unicode) - Racket

    Reading Strings in The Racket Reference documents the fine points of the syntax of strings. The display procedure directly writes the characters of a string to the current output port (see Input and Output), …

  6. 4.7 Symbols - Racket

    Symbols in The Racket Guide introduces symbols. A symbol is like an immutable string, but symbols are normally interned, so that two symbols with the same character content are normally eq?.

  7. Racket Cheat Sheet

    Racket Cheat Sheet 🔗 ℹEssentials

  8. Racket Documentation

    Running raco docs (or Racket Documentation on Windows or Mac OS) may open a different page with local and user-specific documentation, including documentation for installed packages.

  9. string-util - Racket

    Given two strings returns the index of their longest common prefix from left to right. In other words, the first index position before the two strings start to diverge.

  10. 3.6 Symbols - Racket

    Reading Symbols in The Racket Reference documents the fine points of the syntax of symbols. The write function prints a symbol without a ' prefix. The display form of a symbol is the same as the …