Neil MacMullen
- Total activity 4
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
Neil MacMullen created a post, Feature suggestion - invert ternary logic
I would like a refactoring that can transform var thing = ! someBooleanCondition ? whenItsFalse : whenItsTrue ; into var thing = someBooleanCondition ... -
Neil MacMullen created a post, Feature suggestion: Provide visual cues for readonly/const/non-mutating methods
One of the huge benefits of immutability is being able to reason that an operation is 'safe' because it cannot produce non-local side-effects or that a read/write access is idempotent. It seems to...