transforms.snake

* snake_case transform * * Copyright: © 2016 David Monagle * License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. * Authors: David Monagle

Members

Functions

snakeCase
string snakeCase(string input)

Transforms the given input into snake_case This precomiled regex version does not work at compile time as regex uses malloc

snakeCaseCT
string snakeCaseCT(string input)

Transforms the given input into snake_case Works at compile time

Meta