config/default_variables.go   A
last analyzed

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 16
dl 0
loc 30
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A config.GetDefaultSeparator 0 2 1
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