mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
550 B
36 lines
550 B
8 years ago
|
package serial
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func ToString(v interface{}) string {
|
||
|
if v == nil {
|
||
|
return " "
|
||
|
}
|
||
|
|
||
|
switch value := v.(type) {
|
||
|
case string:
|
||
|
return value
|
||
|
case *string:
|
||
|
return *value
|
||
|
case fmt.Stringer:
|
||
|
return value.String()
|
||
|
case error:
|
||
|
return value.Error()
|
||
|
case []byte:
|
||
|
return BytesToHexString(value)
|
||
|
default:
|
||
|
return fmt.Sprintf("%+v", value)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Concat(v ...interface{}) string {
|
||
|
values := make([]string, len(v))
|
||
|
for i, value := range v {
|
||
|
values[i] = ToString(value)
|
||
|
}
|
||
|
return strings.Join(values, "")
|
||
|
}
|