In Swift we commonly have an enum representing something that is defined in Pascal Case, such as Color and Image assets.
To do this we have to manually override the compiler’s synthesized RawValue, because it outputs in Camel Case, which is a bummer.
Example
enum Colors: String {
case neonGreen = "NeonGreen"
}
👎
With PascalCaseKit, the RawValue is automatically converted to PascalCase.
The conversion to Pascal Case should be completely transparent to the consumer. The desired String must be accessed through rawValue and not a new variable.
Limitations
Due to the core design decision above, an enum case cannot choose to override the rawValue like you normally can. Any overrides are ignored.
PascalCaseKit
Converts Swift enum rawValues to Pascal Case.
Why
In Swift we commonly have an enum representing something that is defined in Pascal Case, such as Color and Image assets. To do this we have to manually override the compiler’s synthesized RawValue, because it outputs in Camel Case, which is a bummer.
Example
With PascalCaseKit, the RawValue is automatically converted to PascalCase.
Design Decisions
The conversion to Pascal Case should be completely transparent to the consumer. The desired String must be accessed through
rawValue
and not a new variable.Limitations
Due to the core design decision above, an enum case cannot choose to override the rawValue like you normally can. Any overrides are ignored.