/// <summary> /// Project the Either into a Lst R /// </summary> /// <typeparam name="L">Left</typeparam> /// <typeparam name="R">Right</typeparam> /// <param name="either">Either to project</param> /// <returns>If the Either is in a Right state, a Lst of R with one item. A zero length Lst R otherwise</returns> public static Lst <R> rightToList <L, R>(EitherUnsafe <L, R> either) => either.RightToList();