2013-02-12 05:36:06 +04:00
|
|
|
// Copyright (c) 2012, Matt T. Proud
|
|
|
|
// All rights reserved.
|
2012-05-24 22:02:44 +04:00
|
|
|
|
2013-02-12 05:36:06 +04:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2013-02-18 08:09:21 +04:00
|
|
|
//
|
2013-02-12 05:36:06 +04:00
|
|
|
// The utility package provides general purpose helpers to assist with this
|
|
|
|
// library.
|
2013-02-18 08:09:21 +04:00
|
|
|
//
|
2013-02-12 05:36:06 +04:00
|
|
|
// priority_queue.go provides a simple priority queue.
|
2013-02-18 08:09:21 +04:00
|
|
|
//
|
2013-02-12 05:36:06 +04:00
|
|
|
// priority_queue_test.go provides a test complement for the priority_queue.go
|
|
|
|
// module.
|
2013-02-18 08:09:21 +04:00
|
|
|
//
|
2013-02-12 05:36:06 +04:00
|
|
|
// test_helper.go provides a testing assistents for this package and its
|
|
|
|
// dependents.
|
2013-02-18 08:09:21 +04:00
|
|
|
//
|
2013-02-12 05:36:06 +04:00
|
|
|
// utility_test.go provides a test suite for all tests in the utility package
|
|
|
|
// hierarchy. It employs the gocheck framework for test scaffolding.
|
2012-05-24 22:02:44 +04:00
|
|
|
package documentation
|