Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
37656ad5
Commit
37656ad5
authored
Mar 06, 2009
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
document container/intvector
R=rsc DELTA=15 (15 added, 0 deleted, 0 changed) OCL=25794 CL=25812
parent
dfe08532
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
intvector.go
src/lib/container/intvector.go
+15
-0
No files found.
src/lib/container/intvector.go
View file @
37656ad5
...
...
@@ -6,59 +6,74 @@ package vector
import
"vector"
// IntVector is a specialization of Vector that hides the wrapping of Elements around ints.
type
IntVector
struct
{
// TODO do not export field
vector
.
Vector
;
}
// Init initializes a new or resized vector. The initial length may be <= 0 to
// request a default length. If initial_len is shorter than the current
// length of the IntVector, trailing elements of the IntVector will be cleared.
func
(
p
*
IntVector
)
Init
(
len
int
)
*
IntVector
{
p
.
Vector
.
Init
(
len
);
return
p
;
}
// NewIntVector returns an initialized new IntVector with length at least len.
func
NewIntVector
(
len
int
)
*
IntVector
{
return
new
(
IntVector
)
.
Init
(
len
)
}
// At returns the i'th element of the vector.
func
(
p
*
IntVector
)
At
(
i
int
)
int
{
return
p
.
Vector
.
At
(
i
)
.
(
int
)
}
// Set sets the i'th element of the vector to value x.
func
(
p
*
IntVector
)
Set
(
i
int
,
x
int
)
{
p
.
Vector
.
Set
(
i
,
x
)
}
// Last returns the element in the vector of highest index.
func
(
p
*
IntVector
)
Last
()
int
{
return
p
.
Vector
.
Last
()
.
(
int
)
}
// Insert inserts into the vector an element of value x before
// the current element at index i.
func
(
p
*
IntVector
)
Insert
(
i
int
,
x
int
)
{
p
.
Vector
.
Insert
(
i
,
x
)
}
// Delete deletes the i'th element of the vector. The gap is closed so the old
// element at index i+1 has index i afterwards.
func
(
p
*
IntVector
)
Delete
(
i
int
)
int
{
return
p
.
Vector
.
Delete
(
i
)
.
(
int
)
}
// Push appends x to the end of the vector.
func
(
p
*
IntVector
)
Push
(
x
int
)
{
p
.
Vector
.
Push
(
x
)
}
// Pop deletes and returns the last element of the vector.
func
(
p
*
IntVector
)
Pop
()
int
{
return
p
.
Vector
.
Pop
()
.
(
int
)
}
// SortInterface support
// Less returns a boolean denoting whether the i'th element is less than the j'th element.
func
(
p
*
IntVector
)
Less
(
i
,
j
int
)
bool
{
return
p
.
At
(
i
)
<
p
.
At
(
j
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment