deferred class
	EV_DYNAMIC_LIST_IMP [reference G -> EV_CONTAINABLE, reference G_IMP -> EV_ANY_I]

General
	cluster: implementation_mswin
	description: 
		"Eiffel Vision dynamic list. Mswindows implementation.
		
		Note: G_IMP denotes the storage type of ev_children."

Ancestors
	EV_DYNAMIC_LIST_I* [reference G -> EV_CONTAINABLE]

Queries
	count: INTEGER_32
	cursor: EV_DYNAMIC_LIST_CURSOR [G]
	has (v: [like item] G): BOOLEAN
	i_th (i: INTEGER_32): [like item] G
	index: INTEGER_32
	index_of (v: [like item] G; i: INTEGER_32): INTEGER_32
	item: G
	off: BOOLEAN
	retrieve_item_by_data (data: ANY; should_compare_objects: BOOLEAN): G
	retrieve_items_by_data (data: ANY; should_compare_objects: BOOLEAN): ARRAYED_LIST [G]
	valid_cursor (p: CURSOR): BOOLEAN

Commands
	append (s: SEQUENCE [G])
	back
	extend (v: [like item] G)
	forth
	go_i_th (i: INTEGER_32)
	go_to (p: CURSOR)
	merge_left (other: [like interface] EV_DYNAMIC_LIST [G])
	merge_right (other: [like interface] EV_DYNAMIC_LIST [G])
	move (i: INTEGER_32)
	prune (v: [like item] G)
	put_front (v: [like item] G)
	put_i_th (v: [like item] G; i: INTEGER_32)
	put_left (v: [like item] G)
	put_right (v: [like item] G)
	remove
	remove_left
	remove_right
	replace (v: [like item] G)
	start
	wipe_out