2022-12-23 12:38:51 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2022-12-23 12:35:10 -05:00
|
|
|
|
using System.Linq;
|
2022-12-23 12:38:51 -05:00
|
|
|
|
|
|
|
|
|
namespace FruityFoundation.Base.Structures;
|
2021-11-19 00:12:02 -05:00
|
|
|
|
|
|
|
|
|
public static class MaybeExtensions
|
|
|
|
|
{
|
2022-09-23 21:08:48 -04:00
|
|
|
|
public static Maybe<T> FirstOrEmpty<T>(this IEnumerable<T> collection)
|
|
|
|
|
{
|
|
|
|
|
using var enumerator = collection.GetEnumerator();
|
|
|
|
|
|
2023-08-01 22:12:54 -04:00
|
|
|
|
return !enumerator.MoveNext() ? Maybe.Empty<T>() : enumerator.Current;
|
2022-09-23 21:08:48 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Maybe<T> FirstOrEmpty<T>(this IEnumerable<T> collection, Func<T, bool> pred)
|
|
|
|
|
{
|
|
|
|
|
foreach (var item in collection)
|
|
|
|
|
if (pred(item))
|
|
|
|
|
return item;
|
|
|
|
|
|
2023-08-01 22:12:54 -04:00
|
|
|
|
return Maybe.Empty<T>();
|
2022-09-23 21:08:48 -04:00
|
|
|
|
}
|
2021-11-19 00:12:02 -05:00
|
|
|
|
|
2023-12-19 21:43:00 -05:00
|
|
|
|
public static Maybe<TValue> TryGetValue<TKey, TValue>(this IDictionary<TKey, TValue> dict, TKey key) =>
|
2023-08-02 20:26:10 -04:00
|
|
|
|
dict.TryGetValue(key, out var value) ? Maybe.Just(value) : Maybe.Empty<TValue>();
|
|
|
|
|
|
2023-08-01 22:12:54 -04:00
|
|
|
|
public static Maybe<TValue> TryGet<TKey, TValue>(this IReadOnlyDictionary<TKey, TValue> dict, TKey key) =>
|
|
|
|
|
dict.TryGetValue(key, out var value) ? Maybe.Just(value) : Maybe.Empty<TValue>();
|
|
|
|
|
|
2021-11-19 00:12:02 -05:00
|
|
|
|
public static T? ToNullable<T>(this Maybe<T> item) where T : struct =>
|
|
|
|
|
item.HasValue ? item.Value : null;
|
2023-08-01 22:12:54 -04:00
|
|
|
|
}
|