mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
updated lazylist to make it easy to work with.
This commit is contained in:
@@ -5,6 +5,25 @@ 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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user