Skip to content
View pavlogrushetsky's full-sized avatar

Block or report pavlogrushetsky

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. NBomber NBomber Public

    Forked from PragmaticFlow/NBomber

    Modern and flexible load testing framework for Pull and Push scenarios, designed to test any system regardless a protocol (HTTP/WebSockets/AMQP etc) or a semantic model (Pull/Push).

    F#

  2. NBomber.Http NBomber.Http Public

    Forked from PragmaticFlow/NBomber.Http

    NBomber plugin for defining HTTP scenarios.

    F#

  3. Algebraic Data Types V2 Algebraic Data Types V2
    1
    public abstract class Union2<T1, T2>
    2
    {
    3
        public abstract T Match<T>(Func<T1, T> f1 = null, Func<T2, T> f2 = null, T def = default);
    4
        public abstract void Match(Action<T1> f1 = null, Action<T2> f2 = null);
    5
    
                  
  4. MatchExpressions.cs MatchExpressions.cs
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Collections.Immutable;
    4
    using System.Linq;
    5