This is a parameterless function:
- (void) doSomething;
This is a hypothetically function with "parameterless parameter":
- (void) convertCelcius:(CGFloat)celcius toFarenheit;
So I can call it like this:
CGFloat result = [myClass convertCelcius:50.5 toFarenheit];
CGFloat result = [myClass convertCelcius:50.5 toKelvin];
CGFloat result = [myClass convertKelvin:352 toCelcius];
Instead of:
CGFloat result = [myClass farenheitFromCelcius:50.5];
CGFloat result = [myClass kelvinFromCelcius:50.5];
CGFloat result = [myClass celciusFromKelvin:352];
Is this possible? Thanks.