Tensegritics / ClojureDart

Clojure dialect for Flutter and Dart
1.44k stars 92 forks source link

How should I handle generics types ? #193

Closed kmrk closed 1 year ago

kmrk commented 1 year ago

such as in bloc :

class AuthBloc extends Bloc<AuthEvent, AuthState> { }

what should Bloc<AuthEvent, AuthState> be in ClojureDart?

please help

cgrand commented 1 year ago

#/(Bloc AuthEvent AuthState) I omitted ns aliases since you didn't provide them. Have you seen our cheatsheet? https://github.com/Tensegritics/ClojureDart/raw/main/doc/ClojureDart%20Cheatsheet.pdf

kmrk commented 1 year ago

Thank you very much! I will carefully read the cheatsheet!