ixset-typed v0.3 Release Notes

Release Date: 2014-07-23 // over 9 years ago
    • IxSet internals are now more strict

    • The empty method of Indexable is now called indices and has a slightly different path; to migrate your code, if you were using Template Haskell, you probably do not have to change anything. Otherwise, wherever you have an instance of Indexable that looks like this

      instance Indexable MyIndexSet MyType where -- OLD empty = mkEmpty ...

    change it to

       instance Indexable MyIndexSet MyType where  -- NEW
         indices = ixList ...