Git Product home page Git Product logo

Comments (2)

petermichaux avatar petermichaux commented on June 10, 2024

Set's are inherently unordered collections and should be used as such. The order of insertion should not be depended upon. See http://peter.michaux.ca/maria/api/maria.SetModel.html where it mentions that the order should not be depended upon.

There is almost always a more natural way to order elements in a set: time of creation, for example. You can ask the model for the elements of the array sorted and then use that array to update your view only changing changing elements of the SetView when elements of the sorted model array are different.

Alternatively one could write a ListModel class that is like a SetView but with defined ordering and methods to insert at particular points in the list. This would be very similar to https://github.com/petermichaux/maria-NodeModel/blob/master/src/NodeModel.js which is a node with ordered children designed to be a used in tree structures.

from maria.

petermichaux avatar petermichaux commented on June 10, 2024

Another common difference between a set and a list: Usually a set can only contain an item once but a list can contain an item several times because each inclusion is at a different position in the list.

from maria.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.