Skip to content
View ElysiumWhale's full-sized avatar
Block or Report

Block or report ElysiumWhale

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
ElysiumWhale/README.md

May the force be with you... force of !

Alexey's github stats

Pinned

  1. ChessClock ChessClock Public

    Swift

  2. BuildTimeTracker BuildTimeTracker Public

    Swift 3

  3. BarcodeScanner BarcodeScanner Public

    Swift

  4. EasyTodo EasyTodo Public

    Swift 1

  5. Stack-like working collection class ... Stack-like working collection class which drops bottom value while adding new value if store is full
    1
    public class LimitedSizeStack<T>
    2
    {
    3
        private int _count;
    4
        private int _index;
    5
        private int _limit;