Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Latest commit

 

History

History
21 lines (13 loc) · 549 Bytes

to-lower.md

File metadata and controls

21 lines (13 loc) · 549 Bytes

to-lower

to-lower removes a copy of a string with all uppercase characters replaced with their lowercase equivalent. This function uses Go's regular strings package and so this function should not be used where Unicode characters are involved, unexpected results might happen.

See also to-upper.

Examples

  • (to-lower "FOO")"foo"

Forms

(to-lower string:string)string

  • string is an arbitrary expression.

Returns a copy of the value with all bytes being turned to their lowercase equivalent.