public static Cell <T> Create(T data)
        {
            var newHoneycomb = new Honeycomb <T>();
            var newCell      = new Cell <T>(data, newHoneycomb, 0, 0);

            newHoneycomb.AddCell(newCell);

            return(newCell);
        }