config.GetDefaultSeparator   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
nop 0
1
package config
2
3
// 			PRIVATE METHODS
4
5
var defaultSeparator string = ","
6
7
// 			PRIVATE METHODS
8
9
// 			PUBLIC METHODS
10
11
//GetDefaultSeparator variable for arrays toString()
12
func GetDefaultSeparator() string {
13
	return defaultSeparator
14
}
15
16
// 			PUBLIC METHODS
17
18
// Primitive types
19
var Types struct {
20
	Int64_slice  []int64
21
	Int32_slice  []int32
22
	Int16_slice  []int16
23
	Int8_slice   []int8
24
	Int_slice    []int
25
	Uint64_slice []uint64
26
	Uint32_slice []uint32
27
	Uint16_slice []uint16
28
	Uint8_slice  []uint8
29
	Uint_slice   []uint
30
	String_slice []string
31
}
32