query
On this page

toLower

lib.strings.toLower

Docs pulled from | This Revision | about 1 hour ago


Converts an ASCII string s to lower-case.

Inputs

s
The string to convert to lower-case.

Type

toLower :: string -> string

Examples

lib.strings.toLower usage example

toLower "HOME"
=> "home"

Noogle detected

Aliases

Implementation

This function is implemented in c++ and is part of the native nix runtime.

Implementation

The following is the current implementation of this function.

toLower = replaceStrings upperChars lowerChars;