Class DS_CELL |
note
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: "MIT License"
class interface
DS_CELL [G]
create
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 |