Pinned Loading
-
gezinomi
gezinomi PublicForked from busrademir94/gezinomi
Kural Tabanlı Sınıflandırma ile Potansiyel Müşteri Getirisi Hesaplama
Python
-
PhoenixSharp
PhoenixSharp PublicForked from Mazyod/PhoenixSharp
C# Phoenix Channels client. Unity Compatible.
C#
-
-
Eager Singleton
Eager Singleton 1class NavigationService {
2static NavigationService _instace = NavigationService._init();
3static NavigationService get instance => _instace;
4NavigationService._init();
5}
-
Lazy Singleton
Lazy Singleton 1class NetworkService {
2static NetworkService _instace;
3static NetworkService get instance {
4if (_instace == null) _instace = NetworkService._init();
5return _instace;
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.