Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

26
vendor/github.com/go-ego/riot/utils/BUILD.bazel generated vendored Normal file
View File

@@ -0,0 +1,26 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = [
"test_utils.go",
"utils.go",
],
importmap = "go-common/vendor/github.com/go-ego/riot/utils",
importpath = "github.com/go-ego/riot/utils",
visibility = ["//visibility:public"],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)

1
vendor/github.com/go-ego/riot/utils/test_utils.go generated vendored Normal file
View File

@@ -0,0 +1 @@
package utils

31
vendor/github.com/go-ego/riot/utils/utils.go generated vendored Normal file
View File

@@ -0,0 +1,31 @@
// Copyright 2016 ego authors
//
// Licensed under the Apache License, Version 2.0 (the "License"): you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
package utils
// AbsInt return to the opposite number
func AbsInt(a int) int {
if a < 0 {
return -a
}
return a
}
// MinInt return to the small number
func MinInt(a, b int) int {
if a < b {
return a
}
return b
}