Tagged Questions
16
votes
8answers
727 views
When should the Singleton pattern NOT be used? (Besides the obvious)
I know well that you want to use Singleton to provide a global point of access to some state or service. The benefits of the Singleton pattern do not need to be enumerated in this question.
What I am ...
1
vote
2answers
559 views
Classic Singleton implementation in OCaml
I am attempting to conceptualize the Singleton design pattern (qua Java) in OCaml and have seen ever instance allude to functors or modules, neither of which I am using in a proof of concept of GoF's ...