Coder Social home page Coder Social logo

exram.reactivecollections's People

Contributors

danielcweber avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

exram.reactivecollections's Issues

Nuget Package

Is there a nuget package for this project? If not, could you please create one?

A while back, I created a similar project called MuVaViMo (https://github.com/Yeah69/MuVaViMo) and it works well for simple use cases. However, at that time I wasn't into Reactive Extensions and did create the project without it. Since I discovered Rx I thought that Rx would be an improvement, but hadn't managed to spare enough time to refactor and extend my project.
Consindering the description of your project I think that ExRam.ReactiveCollections is far ahead of my project. Hence, I would like to test your project as replacement for MuVaViMo.

Usage example

I would love to see an example on how to use the collections. For example how to replace a .Scan<>(ImmutableDictionary<>) with that.
Maybe in the Readme in a second section.

ObservableCollection does not change count (ICollection.Count)

I cannot get the ObservableCollection aspect to work (LINQPad script):

var list = new ListReactiveCollectionSource<int>();
var rc = list.ReactiveCollection;
var oc = rc.ToObservableCollection();
for (var i = 0; i < 10; i++)
{
	await Task.Delay(TimeSpan.FromSeconds(0.2));
	list.Add(i);
}
list.Count.Dump("ListReactiveCollectionSource.Count");
oc.Count.Dump("ObservableCollection.Count");

The script dumps

ListReactiveCollectionSource.Count
10
ObservableCollection.Count
0

I was expecting the oc.Count to be updated when the source collection was changed. I see now that a property changed event seems to be emited for the Count property when the source collection changes - it's just that the property does not store any value which seems a bit misleading.

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.