mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 10:17:47 +00:00
updated lazylist to make it easy to work with.
This commit is contained in:
parent
59d2114c87
commit
c1960525d7
1 changed files with 19 additions and 0 deletions
|
@ -4,7 +4,26 @@ using Marr.Data;
|
||||||
namespace NzbDrone.Core.Datastore
|
namespace NzbDrone.Core.Datastore
|
||||||
{
|
{
|
||||||
public class LazyList<T> : LazyLoaded<List<T>>
|
public class LazyList<T> : LazyLoaded<List<T>>
|
||||||
|
{
|
||||||
|
public LazyList()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public LazyList(IEnumerable<T> items)
|
||||||
|
: base(new List<T>(items))
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator LazyList<T>(List<T> val)
|
||||||
|
{
|
||||||
|
return new LazyList<T>(val);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator List<T>(LazyList<T> lazy)
|
||||||
|
{
|
||||||
|
return lazy.Value;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue