src.dualinventive.com/go/common/vendor/github.com/Unknwon/com
Jerry Jacobs 1193c82181 initial 2024-08-09 12:10:16 +02:00
..
testdata initial 2024-08-09 12:10:16 +02:00
.travis.yml initial 2024-08-09 12:10:16 +02:00
LICENSE initial 2024-08-09 12:10:16 +02:00
README.md initial 2024-08-09 12:10:16 +02:00
cmd.go initial 2024-08-09 12:10:16 +02:00
cmd_test.go initial 2024-08-09 12:10:16 +02:00
convert.go initial 2024-08-09 12:10:16 +02:00
convert_test.go initial 2024-08-09 12:10:16 +02:00
dir.go initial 2024-08-09 12:10:16 +02:00
dir_test.go initial 2024-08-09 12:10:16 +02:00
example_test.go initial 2024-08-09 12:10:16 +02:00
file.go initial 2024-08-09 12:10:16 +02:00
file_test.go initial 2024-08-09 12:10:16 +02:00
html.go initial 2024-08-09 12:10:16 +02:00
html_test.go initial 2024-08-09 12:10:16 +02:00
http.go initial 2024-08-09 12:10:16 +02:00
http_test.go initial 2024-08-09 12:10:16 +02:00
math.go initial 2024-08-09 12:10:16 +02:00
math_test.go initial 2024-08-09 12:10:16 +02:00
path.go initial 2024-08-09 12:10:16 +02:00
path_test.go initial 2024-08-09 12:10:16 +02:00
regex.go initial 2024-08-09 12:10:16 +02:00
regex_test.go initial 2024-08-09 12:10:16 +02:00
slice.go initial 2024-08-09 12:10:16 +02:00
slice_test.go initial 2024-08-09 12:10:16 +02:00
string.go initial 2024-08-09 12:10:16 +02:00
string_test.go initial 2024-08-09 12:10:16 +02:00
time.go initial 2024-08-09 12:10:16 +02:00
url.go initial 2024-08-09 12:10:16 +02:00

README.md

Common Functions

Build Status Go Walker

This is an open source project for commonly used functions for the Go programming language.

This package need >= go 1.2

Code Convention: based on Go Code Convention.

Contribute

Your contribute is welcome, but you have to check following steps after you added some functions and commit them:

  1. Make sure you wrote user-friendly comments for all functions .
  2. Make sure you wrote test cases with any possible condition for all functions in file *_test.go.
  3. Make sure you wrote benchmarks for all functions in file *_test.go.
  4. Make sure you wrote useful examples for all functions in file example_test.go.
  5. Make sure you ran go test and got PASS .