CName

object CName

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

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

CanonicalName is the representative name of these variants.

CName("localAddress") == CName("local address") == CName("local_address")
Authors

leo

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