CName

object CName

Utility for managing names written in different spellings. For example, variable name <i>localAddress</i> can be written as "local address", "local_address", etc.

CanonicalName is the representative name of these variants.

<pre> CName("localAddress") == CName("local address") == CName("local_address") </pre>

Companion
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(name: String): CName
def toCanonicalName(paramName: String): String
def toNaturalName(varName: String): String