You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class HasChangeNotification n a | a -> n where
changeNotification :: DatabaseEntity be db (TableEntity a) -> n (Change a)
It is difficult to imagine a scenario where one would want to use a different notification type (n above) for two different tables (a above). What is far more likely is that there is one notification type for the entire databasedb. This would reduce the tedium and increase the clarity of instance declarations for this class.
The text was updated successfully, but these errors were encountered:
Consider
It is difficult to imagine a scenario where one would want to use a different notification type (
n
above) for two different tables (a
above). What is far more likely is that there is one notification type for the entire databasedb
. This would reduce the tedium and increase the clarity of instance declarations for this class.The text was updated successfully, but these errors were encountered: