Esempio n. 1
0
 public static Func <State, State> Curry <T>(Func <T, State, State> handler, T arg1)
 {
     return(Curry <T, State, State> .New(handler)(arg1));
 }
Esempio n. 2
0
 public static Func <State, State> Curry <T1, T2>(Func <T1, T2, State, State> handler, T1 arg1, T2 arg2)
 {
     return(Curry <T1, T2, State, State> .New(handler)(arg1)(arg2));
 }
Esempio n. 3
0
 public static Func <State, State> UpdateEventArchives(ImList <EventArchive> eventArchives)
 {
     return(Curry <ImList <EventArchive>, State, State> .New(UpdateEventArchives)(eventArchives));
 }
Esempio n. 4
0
 public static Func <State, State> UpdateGameState(GameState gameState)
 {
     return(Curry <GameState, State, State> .New(UpdateGameState)(gameState));
 }
Esempio n. 5
0
 public static Func <State, State> UpdateProcessing(Event processing)
 {
     return(Curry <Event, State, State> .New(UpdateProcessing)(processing));
 }
Esempio n. 6
0
 public static Func <State, State> UpdateEventStoreList(ImList <Event> eventStoreList)
 {
     return(Curry <ImList <Event>, State, State> .New(UpdateEventStoreList)(eventStoreList));
 }
Esempio n. 7
0
 public static Func <State, State> UpdateEventStoreProgress(Func <State, string> getProgress)
 {
     return(Curry <Func <State, string>, State, State> .New(UpdateEventStoreProgress)(getProgress));
 }
Esempio n. 8
0
 public static Func <State, State> UnpackEventArchivesInRange(long oldestSpawnTime)
 {
     return(Curry <long, State, State> .New(UnpackEventArchivesInRange)(oldestSpawnTime));
 }
Esempio n. 9
0
 public static Func <State, State> UpdateEventStoreProgress(string progress)
 {
     return(Curry <string, State, State> .New(Store.UpdateEventStoreProgress)(progress));
 }
Esempio n. 10
0
 public static Func <State, State> OverlayOnEventStoreList(Func <State, ImList <Event> > getEventList)
 {
     return(Curry <Func <State, ImList <Event> >, State, State> .New(OverlayOnEventStoreList)(getEventList));
 }
Esempio n. 11
0
 public static Func <State, State> OverlayOnEventStoreList(ImList <Event> eventList)
 {
     return(Curry <ImList <Event>, State, State> .New(OverlayOnEventStoreList)(eventList));
 }
Esempio n. 12
0
 public static Func <State, State> UnpackNewestEventArchive(ImList <EventArchive> eventArchives)
 {
     return(Curry <ImList <EventArchive>, State, State> .New(UnpackNewestEventArchive)(eventArchives));
 }
Esempio n. 13
0
 public static Func <State, State> UnpackEventArchivesInRange(Func <State, long> getOldestSpawnTime)
 {
     return(Curry <Func <State, long>, State, State> .New(UnpackEventArchivesInRange)(getOldestSpawnTime));
 }