Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
b
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
b
Commits
d1f6c902
Commit
d1f6c902
authored
Jun 24, 2013
by
jnml
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parent
e21c4f1e
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1440 additions
and
0 deletions
+1440
-0
Makefile
Makefile
+29
-0
README.md
README.md
+6
-0
all_test.go
all_test.go
+685
-0
btree.go
btree.go
+720
-0
No files found.
Makefile
0 → 100644
View file @
d1f6c902
all
:
go
fmt
go
test
-i
go
test
go build
go vet
go
install
make todo
todo
:
@
grep
-n
^[[:space:]]
*
_[[:space:]]
*
=[[
:space:]][[:alpha:]][[:alnum:]]
*
*
.go
||
true
@
grep
-n
TODO
*
.go
||
true
@
grep
-n
BUG
*
.go
||
true
@
grep
-n
println
*
.go
||
true
clean
:
@
go clean
rm
-f
*
~ cov cov.html
gocov
:
gocov
test
$(COV)
| gocov-html
>
cov.html
generic
:
@
# writes to stdout a version where the type of key is KEY and the type
@
# of value is VALUE.
@
#
@
# Intended use is to replace all textual occurrences of KEY or VALUE in
@
# the output with your desired types.
@
sed
-e
's|interface{}[^{]*/\*K\*/|KEY|g'
-e
's|interface{}[^{]*/\*V\*/|VALUE|g'
btree.go
README.md
View file @
d1f6c902
...
@@ -2,3 +2,9 @@ b
...
@@ -2,3 +2,9 @@ b
=
=
Package b implements a B+tree.
Package b implements a B+tree.
Installation:
$ go get github.com/cznic/b
Documentation:
[
godoc.org/github.com/cznic/b
](
http://godoc.org/github.com/cznic/b
)
all_test.go
0 → 100644
View file @
d1f6c902
This diff is collapsed.
Click to expand it.
btree.go
0 → 100644
View file @
d1f6c902
This diff is collapsed.
Click to expand it.
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