
Proto is an R package that facilitates prototype
programming, a type of object-oriented programming, that
does not use classes as an atomic concept (but is powerful
enough to encompass them).

The package has been in development for over a year and this
is its first public release.

The package is lightweight providing a thin layer on top of
R environments.  Unlike other packages which grow over time
proto has become smaller over time as it was successively
polished to reduce it to its essentials.  Despite its small
size prototype-based systems can be more powerful than more 
complex class-based systems.  

EASE OF USE

The proto package is easy to use because:

1.  few names. There is only one new function name to learn
among the core functions.  The 'proto' function constructs new
proto objects.  All other core functions are just methods 
for existing standard R generics (as.list, $, etc.)

2. documentation. A 15 page report, a reference card, a demo
and help files are provided.

3.  consistency.  Proto objects form an S3 subclass of the
environment class and therefore work like environments.
One can leverage everything one knows about environments to
use proto too.  The package is highly consistent with R and
works the way R works.

4. concise implementation.  The source code, excluding
dot.proto, is about one page of code making it possible to
rapidly understand it in its entirety not only from the
documentation but also by reading its source. (This should
not be necessary but its there for those who wish.)

5. tested.  The package has been independently tested by
multiple people and has no known bugs.  (If you find any
please let us know!)

6. visualization.  It includes a graphical support function,
dot.proto, which produces graphical inheritance diagrams of
projects allowing one to visualize larger projects.

EXAMPLE

The proto package is used like this:

	library(proto)

	# new object with variable a and method addtwice
	oo <- proto(a = 1, addtwice = function(., x) .$a <- .$a + 2*x)

	oo$addtwice(3)  
	oo$ls()         # "a" "addtwice"
	oo$a            # 7

	# create child object overriding a
	ooc <- oo$proto(a = 10)

	ooc$addtwice(1)  
	ooc$ls()        # "a"
	ooc$a           # 12

DOCUMENTATION

More information is available via:

	install.packages("proto")  # needs R 2.1.0 or later
	library(proto)

	demo(proto)           # a self running demo

	vignette("proto")     # 15 page report
	vignette("protoref")  # reference card

	?proto                # constructs proto objects
	?dot.proto            # visualize a proto project

proto is available on CRAN now for R 2.1.0 and later.

Comments are welcome.

Louis Kates <lkates@alumni.princeton.edu>
Thomas Petzoldt <petzoldt@rcs.urz.tu-dresden.de>

May 1, 2005

