htsign
Follow
Pinned Loading
-
simple C# Option(Maybe) MonadLike im...
simple C# Option(Maybe) MonadLike implementation 1public static class Option
2{
3public static Option<T> Create<T>(T? value) => value != null ? new Some<T>(value) : Option<T>.None;
4public static None<dynamic> None { get; } = new None<dynamic>();
5}
-
引用式を評価して、式の途中で null になった場合に全体として nul...
引用式を評価して、式の途中で null になった場合に全体として null を返す関数を定義したい人生だった。C# でいうnull条件演算子( ?. ) のようなものを作りたいので少しずつ実装を進める。つもり。 1namespace QuotationUtility
23open System.Reflection
4open Microsoft.FSharp.Linq.RuntimeHelpers
5open Microsoft.FSharp.Quotations
-
es3-polyfills.js
es3-polyfills.js PublicES5 or above polyfills for ES3 (It's not compatible with ECMA-262 strictly)
JavaScript 1
-
Lambda expression implementation wit...
Lambda expression implementation with wrapping Checked exception for Java 1public class ExceptionWrapper {
2@SuppressWarnings("unchecked")
3public static <T, E extends Exception> T exec(ThrowableSupplier<T, E> func, Function<E, T> orElse) {
4try {
5return func.getThrowable();
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.