1
0
mirror of https://github.com/golang/go synced 2024-10-05 18:31:28 -06:00
go/src/lib/math
Russ Cox 1f6463f823 Convert go tree to hierarchical pkg directory:
import (
		"vector" -> "container/vector"
		"ast" -> "go/ast"
		"sha1" -> "hash/sha1"
		etc.
	)

and update Makefiles.  Because I did the conversion
semi-automatically, I sorted all the import blocks
as a post-processing.  Some files have therefore
changed that didn't strictly need to.

Rename local packages to lower case.
The upper/lower distinction doesn't work on OS X
and complicates the "single-package directories
with the same package name as directory name"
heuristic used by gobuild and godoc to create
the correlation between source and binary locations.
Now that we have a plan to avoid globally unique
names, the upper/lower is unnecessary.

The renamings will cause trouble for a few users,
but so will the change in import paths.
This way, the two maintenance fixes are rolled into
one inconvenience.

R=r
OCL=27573
CL=27575
2009-04-16 20:52:37 -07:00
..
all_test.go Automated g4 rollback of changelist 25024, 2009-03-03 08:39:12 -08:00
asin.go math: doc 2009-03-05 13:31:01 -08:00
atan2.go math: doc 2009-03-05 13:31:01 -08:00
atan.go math: doc 2009-03-05 13:31:01 -08:00
const.go math: doc 2009-03-05 13:31:01 -08:00
exp.go math: doc 2009-03-05 13:31:01 -08:00
fabs.go math: doc 2009-03-05 13:31:01 -08:00
floor.go math: doc 2009-03-05 13:31:01 -08:00
fmod.go math: doc 2009-03-05 13:31:01 -08:00
hypot.go math: doc 2009-03-05 13:31:01 -08:00
log.go math: doc 2009-03-05 13:31:01 -08:00
Makefile Convert go tree to hierarchical pkg directory: 2009-04-16 20:52:37 -07:00
pow10.go math: doc 2009-03-05 13:31:01 -08:00
pow.go math: doc 2009-03-05 13:31:01 -08:00
runtime.go math: doc 2009-03-05 13:31:01 -08:00
sin.go math: doc 2009-03-05 13:31:01 -08:00
sinh.go math: doc 2009-03-05 13:31:01 -08:00
sqrt.go math: doc 2009-03-05 13:31:01 -08:00
tan.go math: doc 2009-03-05 13:31:01 -08:00
tanh.go math: doc 2009-03-05 13:31:01 -08:00