Giter Site home page Giter Site logo

jtprince / arrayclass Goto Github PK

View Code? Open in Web Editor NEW
0.0 3.0 0.0 5 KB

A class factory for generating Array based objects whose attributes can be accessed like those of a normal ruby object (or like an array). They are highly memory efficient (almost equivalent to an Array) and fast to work with.

License: Other

Ruby 100.00%

arrayclass's Introduction

Arrayclass
==========

Arrayclass is a class factory for generating Array based objects whose attributes can be accessed like those of a normal ruby object (or like an array). They are highly memory efficient (almost equivalent to an Array) and fast to work with.

Features
--------

Arrayclass based objects are:
* memory efficient - roughly the same space as a normal array
* quickly instantiated with data

Examples
--------

    require 'arrayclass'  

    Person = Arrayclass.new(%w(name eye_color watch_brand))
    # instantiate with an array
    joe = Person.new(%w(Joe brown Casio))

    # instantiate an empty object (an array of the expected size is created)
    sally = Person.new
    sally.name = 'Sally'
    sally[0] == 'Sally' # true
    
### Access/modify attributes like a normal object

    joe.name # 'Joe'
    joe.watch_brand = 'Timex'

### Use some array features

    joe[1]    # 'brown'
    joe[1..2] = ['blue', 'Fossil']
    joe.each {|attribute| # do something with attribute }

### Arrayclass derived classes can be subclassed

    class BigPerson < Person
      def some_new_function
      end

      # push on another attribute
      self.add_member('shoe_type')

      # (haven't written a remove_member function yet...)
    end

    BigPerson.new

Installation
------------

    gem install arrayclass

arrayclass's People

Contributors

jtprince avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.