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
The current architecture hides data types behind a generic interface. The resultant code is cumbersome to work with, and bereft of type information that should ideally be present.
Since most data-processing tasks will be performed on data with a known structure, providing an API that can make effective use of it will greatly improve the user experience.
The implementation can provide various views into the internal data. Collective: citizens.age; Individual: citizens.first().
Lazy loading can be implemented for extremely large datasets.
Using views, external libraries can be provided data in suitable structures.
The text was updated successfully, but these errors were encountered:
The current architecture hides data types behind a generic interface. The resultant code is cumbersome to work with, and bereft of type information that should ideally be present.
Since most data-processing tasks will be performed on data with a known structure, providing an API that can make effective use of it will greatly improve the user experience.
Usage example:
The implementation can provide various views into the internal data. Collective: citizens.age; Individual: citizens.first().
Lazy loading can be implemented for extremely large datasets.
Using views, external libraries can be provided data in suitable structures.
The text was updated successfully, but these errors were encountered: