Class DS_CELL PreviousNext

indexing
description:

    "Cells containing an item"

library:    "Gobo Eiffel Structure Library"
author:     "Eric Bezault <ericb@gobosoft.com>"
copyright:  "Copyright (c) 1999, Eric Bezault and others"
license:    "Eiffel Forum License v2 (see forum.txt)"
class interface
DS_CELL [G]
creation
make (v: G)
        -- Insert v in cell.
    ensure
        inserted: item = v
feature -- Access
item: G 
        -- Content of cell
feature -- Element change
put, make (v: G)
        -- Insert v in cell.
    ensure
        inserted: item = v
end -- class DS_CELL

Copyright © 1999, Eric Bezault
mailto:
ericb@gobosoft.com
http:
//www.gobosoft.com
Last Updated: 8 August 1999

HomeTocPreviousNext