On this page:
immutable-string?

4 Utilities for Strings

 (require lathe-comforts/string)
  package: lathe-comforts-lib

procedure

(immutable-string? v)  boolean?

  v : any/c
Returns whether the given value is an immutable string.

Equivalent to (and (string? v) (immutable? v)).