complete implementation(triggers and etc...)

This commit is contained in:
neuecc
2020-05-05 04:08:53 +09:00
parent 7bc9ef90f1
commit b8d1a09224
100 changed files with 5364 additions and 3794 deletions

View File

@@ -33,13 +33,8 @@ namespace UniRx.Async.Internal
}
}
public static RentArray<T> Materialize<T>(IEnumerable<T> source)
public static RentArray<T> CopyToRentArray<T>(IEnumerable<T> source)
{
if (source is T[] array)
{
return new RentArray<T>(array, array.Length, null);
}
var defaultCount = 32;
if (source is ICollection<T> coll)
{