0
votes
How do you write a (simple) variable “toggle”?
I tend to use if not...return.
But that's if you are looking to return a variable. Getting disqualifiers out of the way first tends to make it more readable. It really depends on the contex …
0
votes
How do you/your company create project-documentation?
For us it starts with a Word Document. You basically build out a bulleted list of things you want to accomplish. Then those bulletpoints get transformed into more specific details (classes with mem …
0
votes
Is this a good use of the Singleton pattern?
That's not the pattern you should be using. I think you should try a state pattern instead. Singleton is for when you need access to a limited resource from many different places.
Like ope …
