Preparing report...

Report for github.com/logic-building/functional-go

A+    Excellent!    Found 33 issues across 366 files

Tweet

gofmt93%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


golint98%

Golint is a linter for Go source code.


gocyclo98%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.

    • functional-go/fp/difference_test.go
    • Line 144: warning: cyclomatic complexity 17 of function TestDifferenceInt16() is high (> 15) (gocyclo)
    • Line 189: warning: cyclomatic complexity 17 of function TestDifferenceInt8() is high (> 15) (gocyclo)
    • Line 324: warning: cyclomatic complexity 17 of function TestDifferenceUint32() is high (> 15) (gocyclo)
    • Line 549: warning: cyclomatic complexity 17 of function TestDifferenceFloat32() is high (> 15) (gocyclo)
    • Line 99: warning: cyclomatic complexity 17 of function TestDifferenceInt32() is high (> 15) (gocyclo)
    • Line 459: warning: cyclomatic complexity 17 of function TestDifferenceStr() is high (> 15) (gocyclo)
    • Line 594: warning: cyclomatic complexity 17 of function TestDifferenceFloat64() is high (> 15) (gocyclo)
    • Line 414: warning: cyclomatic complexity 17 of function TestDifferenceUint8() is high (> 15) (gocyclo)
    • Line 234: warning: cyclomatic complexity 17 of function TestDifferenceUint() is high (> 15) (gocyclo)
    • Line 279: warning: cyclomatic complexity 17 of function TestDifferenceUint64() is high (> 15) (gocyclo)
    • Line 9: warning: cyclomatic complexity 17 of function TestDifferenceInt() is high (> 15) (gocyclo)
    • Line 54: warning: cyclomatic complexity 17 of function TestDifferenceInt64() is high (> 15) (gocyclo)
    • Line 369: warning: cyclomatic complexity 17 of function TestDifferenceUint16() is high (> 15) (gocyclo)
    • functional-go/gofp/gofp.go
    • Line 237: warning: cyclomatic complexity 78 of function generateFPCode() is high (> 15) (gocyclo)
    • Line 1306: warning: cyclomatic complexity 27 of function generateSortMethods() is high (> 15) (gocyclo)
    • Line 1643: warning: cyclomatic complexity 24 of function findStructNamesAndFieldsGivenInGoGenerate() is high (> 15) (gocyclo)
    • Line 89: warning: cyclomatic complexity 24 of function main() is high (> 15) (gocyclo)
    • Line 1005: warning: cyclomatic complexity 22 of function generateFPCodeIO() is high (> 15) (gocyclo)
    • functional-go/fp/pmapioerr_test.go
    • Line 8833: warning: cyclomatic complexity 19 of function TestPmapUint16IntErr() is high (> 15) (gocyclo)
    • Line 14751: warning: cyclomatic complexity 19 of function TestPmapFloat64UintErr() is high (> 15) (gocyclo)
    • Line 14836: warning: cyclomatic complexity 19 of function TestPmapFloat64Uint64Err() is high (> 15) (gocyclo)
    • Line 14921: warning: cyclomatic complexity 19 of function TestPmapFloat64Uint32Err() is high (> 15) (gocyclo)
    • Line 15006: warning: cyclomatic complexity 19 of function TestPmapFloat64Uint16Err() is high (> 15) (gocyclo)
    • Line 15091: warning: cyclomatic complexity 19 of function TestPmapFloat64Uint8Err() is high (> 15) (gocyclo)
    • Line 14157: warning: cyclomatic complexity 19 of function TestPmapFloat32BoolErr() is high (> 15) (gocyclo)
    • Line 14241: warning: cyclomatic complexity 19 of function TestPmapFloat32Float64Err() is high (> 15) (gocyclo)
    • Line 14326: warning: cyclomatic complexity 19 of function TestPmapFloat64IntErr() is high (> 15) (gocyclo)
    • Line 14411: warning: cyclomatic complexity 19 of function TestPmapFloat64Int64Err() is high (> 15) (gocyclo)
    • Line 14496: warning: cyclomatic complexity 19 of function TestPmapFloat64Int32Err() is high (> 15) (gocyclo)
    • Line 14581: warning: cyclomatic complexity 19 of function TestPmapFloat64Int16Err() is high (> 15) (gocyclo)
    • Line 14666: warning: cyclomatic complexity 19 of function TestPmapFloat64Int8Err() is high (> 15) (gocyclo)
    • Line 13733: warning: cyclomatic complexity 19 of function TestPmapFloat32Uint64Err() is high (> 15) (gocyclo)
    • Line 13818: warning: cyclomatic complexity 19 of function TestPmapFloat32Uint32Err() is high (> 15) (gocyclo)
    • Line 13903: warning: cyclomatic complexity 19 of function TestPmapFloat32Uint16Err() is high (> 15) (gocyclo)
    • Line 13988: warning: cyclomatic complexity 19 of function TestPmapFloat32Uint8Err() is high (> 15) (gocyclo)
    • Line 12215: warning: cyclomatic complexity 19 of function TestPmapBoolInt64Err() is high (> 15) (gocyclo)
    • Line 13648: warning: cyclomatic complexity 19 of function TestPmapFloat32UintErr() is high (> 15) (gocyclo)
    • Line 12383: warning: cyclomatic complexity 19 of function TestPmapBoolInt16Err() is high (> 15) (gocyclo)
    • Line 12551: warning: cyclomatic complexity 19 of function TestPmapBoolUintErr() is high (> 15) (gocyclo)
    • Line 12719: warning: cyclomatic complexity 19 of function TestPmapBoolUint32Err() is high (> 15) (gocyclo)
    • Line 12887: warning: cyclomatic complexity 19 of function TestPmapBoolUint8Err() is high (> 15) (gocyclo)
    • Line 13055: warning: cyclomatic complexity 19 of function TestPmapBoolFloat32Err() is high (> 15) (gocyclo)
    • Line 12971: warning: cyclomatic complexity 19 of function TestPmapBoolStrErr() is high (> 15) (gocyclo)
    • Line 13563: warning: cyclomatic complexity 19 of function TestPmapFloat32Int8Err() is high (> 15) (gocyclo)
    • Line 12803: warning: cyclomatic complexity 19 of function TestPmapBoolUint16Err() is high (> 15) (gocyclo)
    • Line 13478: warning: cyclomatic complexity 19 of function TestPmapFloat32Int16Err() is high (> 15) (gocyclo)
    • Line 12635: warning: cyclomatic complexity 19 of function TestPmapBoolUint64Err() is high (> 15) (gocyclo)
    • Line 13393: warning: cyclomatic complexity 19 of function TestPmapFloat32Int32Err() is high (> 15) (gocyclo)
    • Line 12467: warning: cyclomatic complexity 19 of function TestPmapBoolInt8Err() is high (> 15) (gocyclo)
    • Line 13308: warning: cyclomatic complexity 19 of function TestPmapFloat32Int64Err() is high (> 15) (gocyclo)
    • Line 12299: warning: cyclomatic complexity 19 of function TestPmapBoolInt32Err() is high (> 15) (gocyclo)
    • Line 13223: warning: cyclomatic complexity 19 of function TestPmapFloat32IntErr() is high (> 15) (gocyclo)
    • Line 12131: warning: cyclomatic complexity 19 of function TestPmapBoolIntErr() is high (> 15) (gocyclo)
    • Line 13139: warning: cyclomatic complexity 19 of function TestPmapBoolFloat64Err() is high (> 15) (gocyclo)
    • Line 11879: warning: cyclomatic complexity 19 of function TestPmapStrBoolErr() is high (> 15) (gocyclo)
    • Line 5779: warning: cyclomatic complexity 19 of function TestPmapUintInt16Err() is high (> 15) (gocyclo)
    • Line 94: warning: cyclomatic complexity 19 of function TestPmapIntInt32Err() is high (> 15) (gocyclo)
    • Line 179: warning: cyclomatic complexity 19 of function TestPmapIntInt16Err() is high (> 15) (gocyclo)
    • Line 264: warning: cyclomatic complexity 19 of function TestPmapIntInt8Err() is high (> 15) (gocyclo)
    • Line 349: warning: cyclomatic complexity 19 of function TestPmapIntUintErr() is high (> 15) (gocyclo)
    • Line 434: warning: cyclomatic complexity 19 of function TestPmapIntUint64Err() is high (> 15) (gocyclo)
    • Line 15260: warning: cyclomatic complexity 19 of function TestPmapFloat64BoolErr() is high (> 15) (gocyclo)
    • Line 10785: warning: cyclomatic complexity 19 of function TestPmapUint8BoolErr() is high (> 15) (gocyclo)
    • Line 10869: warning: cyclomatic complexity 19 of function TestPmapUint8Float32Err() is high (> 15) (gocyclo)
    • Line 10954: warning: cyclomatic complexity 19 of function TestPmapUint8Float64Err() is high (> 15) (gocyclo)
    • Line 10616: warning: cyclomatic complexity 19 of function TestPmapUint8Uint16Err() is high (> 15) (gocyclo)
    • Line 942: warning: cyclomatic complexity 19 of function TestPmapIntFloat32Err() is high (> 15) (gocyclo)
    • Line 1027: warning: cyclomatic complexity 19 of function TestPmapIntFloat64Err() is high (> 15) (gocyclo)
    • Line 1197: warning: cyclomatic complexity 19 of function TestPmapInt64Int32Err() is high (> 15) (gocyclo)
    • Line 1112: warning: cyclomatic complexity 19 of function TestPmapInt64IntErr() is high (> 15) (gocyclo)
    • Line 519: warning: cyclomatic complexity 19 of function TestPmapIntUint32Err() is high (> 15) (gocyclo)
    • Line 604: warning: cyclomatic complexity 19 of function TestPmapIntUint16Err() is high (> 15) (gocyclo)
    • Line 1367: warning: cyclomatic complexity 19 of function TestPmapInt64Int8Err() is high (> 15) (gocyclo)
    • Line 689: warning: cyclomatic complexity 19 of function TestPmapIntUint8Err() is high (> 15) (gocyclo)
    • Line 1452: warning: cyclomatic complexity 19 of function TestPmapInt64UintErr() is high (> 15) (gocyclo)
    • Line 858: warning: cyclomatic complexity 19 of function TestPmapIntBoolErr() is high (> 15) (gocyclo)
    • Line 1282: warning: cyclomatic complexity 19 of function TestPmapInt64Int16Err() is high (> 15) (gocyclo)
    • Line 1537: warning: cyclomatic complexity 19 of function TestPmapInt64Uint64Err() is high (> 15) (gocyclo)
    • Line 1707: warning: cyclomatic complexity 19 of function TestPmapInt64Uint16Err() is high (> 15) (gocyclo)
    • Line 1622: warning: cyclomatic complexity 19 of function TestPmapInt64Uint32Err() is high (> 15) (gocyclo)
    • Line 3573: warning: cyclomatic complexity 19 of function TestPmapInt16Int8Err() is high (> 15) (gocyclo)
    • Line 3064: warning: cyclomatic complexity 19 of function TestPmapInt32BoolErr() is high (> 15) (gocyclo)
    • Line 1792: warning: cyclomatic complexity 19 of function TestPmapInt64Uint8Err() is high (> 15) (gocyclo)
    • Line 1961: warning: cyclomatic complexity 19 of function TestPmapInt64BoolErr() is high (> 15) (gocyclo)
    • Line 6119: warning: cyclomatic complexity 19 of function TestPmapUintUint16Err() is high (> 15) (gocyclo)
    • Line 4421: warning: cyclomatic complexity 19 of function TestPmapInt8IntErr() is high (> 15) (gocyclo)
    • Line 7476: warning: cyclomatic complexity 19 of function TestPmapUint64BoolErr() is high (> 15) (gocyclo)
    • Line 10276: warning: cyclomatic complexity 19 of function TestPmapUint8Int8Err() is high (> 15) (gocyclo)
    • Line 3743: warning: cyclomatic complexity 19 of function TestPmapInt16Uint64Err() is high (> 15) (gocyclo)
    • Line 4761: warning: cyclomatic complexity 19 of function TestPmapInt8UintErr() is high (> 15) (gocyclo)
    • Line 8155: warning: cyclomatic complexity 19 of function TestPmapUint32UintErr() is high (> 15) (gocyclo)
    • Line 9682: warning: cyclomatic complexity 19 of function TestPmapUint16BoolErr() is high (> 15) (gocyclo)
    • Line 6797: warning: cyclomatic complexity 19 of function TestPmapUint64Int32Err() is high (> 15) (gocyclo)
    • Line 2470: warning: cyclomatic complexity 19 of function TestPmapInt32Int8Err() is high (> 15) (gocyclo)
    • Line 2725: warning: cyclomatic complexity 19 of function TestPmapInt32Uint32Err() is high (> 15) (gocyclo)
    • Line 3998: warning: cyclomatic complexity 19 of function TestPmapInt16Uint8Err() is high (> 15) (gocyclo)
    • Line 6034: warning: cyclomatic complexity 19 of function TestPmapUintUint32Err() is high (> 15) (gocyclo)
    • Line 5101: warning: cyclomatic complexity 19 of function TestPmapInt8Uint8Err() is high (> 15) (gocyclo)
    • Line 10021: warning: cyclomatic complexity 19 of function TestPmapUint8Int64Err() is high (> 15) (gocyclo)
    • Line 5354: warning: cyclomatic complexity 19 of function TestPmapInt8Float32Err() is high (> 15) (gocyclo)
    • Line 9258: warning: cyclomatic complexity 19 of function TestPmapUint16UintErr() is high (> 15) (gocyclo)
    • Line 5439: warning: cyclomatic complexity 19 of function TestPmapInt8Float64Err() is high (> 15) (gocyclo)
    • Line 9: warning: cyclomatic complexity 19 of function TestPmapIntInt64Err() is high (> 15) (gocyclo)
    • Line 7137: warning: cyclomatic complexity 19 of function TestPmapUint64Uint32Err() is high (> 15) (gocyclo)
    • Line 6457: warning: cyclomatic complexity 19 of function TestPmapUintFloat32Err() is high (> 15) (gocyclo)
    • Line 3913: warning: cyclomatic complexity 19 of function TestPmapInt16Uint16Err() is high (> 15) (gocyclo)
    • Line 7307: warning: cyclomatic complexity 19 of function TestPmapUint64Uint8Err() is high (> 15) (gocyclo)
    • Line 2215: warning: cyclomatic complexity 19 of function TestPmapInt32IntErr() is high (> 15) (gocyclo)
    • Line 2640: warning: cyclomatic complexity 19 of function TestPmapInt32Uint64Err() is high (> 15) (gocyclo)
    • Line 2895: warning: cyclomatic complexity 19 of function TestPmapInt32Uint8Err() is high (> 15) (gocyclo)
    • Line 4251: warning: cyclomatic complexity 19 of function TestPmapInt16Float32Err() is high (> 15) (gocyclo)
    • Line 6204: warning: cyclomatic complexity 19 of function TestPmapUintUint8Err() is high (> 15) (gocyclo)
    • Line 4506: warning: cyclomatic complexity 19 of function TestPmapInt8Int64Err() is high (> 15) (gocyclo)
    • Line 3318: warning: cyclomatic complexity 19 of function TestPmapInt16IntErr() is high (> 15) (gocyclo)
    • Line 4931: warning: cyclomatic complexity 19 of function TestPmapInt8Uint32Err() is high (> 15) (gocyclo)
    • Line 10446: warning: cyclomatic complexity 19 of function TestPmapUint8Uint64Err() is high (> 15) (gocyclo)
    • Line 5270: warning: cyclomatic complexity 19 of function TestPmapInt8BoolErr() is high (> 15) (gocyclo)
    • Line 9851: warning: cyclomatic complexity 19 of function TestPmapUint16Float64Err() is high (> 15) (gocyclo)
    • Line 9428: warning: cyclomatic complexity 19 of function TestPmapUint16Uint32Err() is high (> 15) (gocyclo)
    • Line 9088: warning: cyclomatic complexity 19 of function TestPmapUint16Int16Err() is high (> 15) (gocyclo)
    • Line 2045: warning: cyclomatic complexity 19 of function TestPmapInt64Float32Err() is high (> 15) (gocyclo)
    • Line 8325: warning: cyclomatic complexity 19 of function TestPmapUint32Uint16Err() is high (> 15) (gocyclo)
    • Line 10191: warning: cyclomatic complexity 19 of function TestPmapUint8Int16Err() is high (> 15) (gocyclo)
    • Line 7645: warning: cyclomatic complexity 19 of function TestPmapUint64Float64Err() is high (> 15) (gocyclo)
    • Line 5609: warning: cyclomatic complexity 19 of function TestPmapUintInt64Err() is high (> 15) (gocyclo)
    • Line 6967: warning: cyclomatic complexity 19 of function TestPmapUint64Int8Err() is high (> 15) (gocyclo)
    • Line 6627: warning: cyclomatic complexity 19 of function TestPmapUint64IntErr() is high (> 15) (gocyclo)
    • Line 5694: warning: cyclomatic complexity 19 of function TestPmapUintInt32Err() is high (> 15) (gocyclo)
    • Line 2385: warning: cyclomatic complexity 19 of function TestPmapInt32Int16Err() is high (> 15) (gocyclo)
    • Line 5949: warning: cyclomatic complexity 19 of function TestPmapUintUint64Err() is high (> 15) (gocyclo)
    • Line 3828: warning: cyclomatic complexity 19 of function TestPmapInt16Uint32Err() is high (> 15) (gocyclo)
    • Line 5864: warning: cyclomatic complexity 19 of function TestPmapUintInt8Err() is high (> 15) (gocyclo)
    • Line 7815: warning: cyclomatic complexity 19 of function TestPmapUint32Int64Err() is high (> 15) (gocyclo)
    • Line 2810: warning: cyclomatic complexity 19 of function TestPmapInt32Uint16Err() is high (> 15) (gocyclo)
    • Line 15344: warning: cyclomatic complexity 19 of function TestPmapFloat64Float32Err() is high (> 15) (gocyclo)
    • Line 8918: warning: cyclomatic complexity 19 of function TestPmapUint16Int64Err() is high (> 15) (gocyclo)
    • Line 3148: warning: cyclomatic complexity 19 of function TestPmapInt32Float32Err() is high (> 15) (gocyclo)
    • Line 3233: warning: cyclomatic complexity 19 of function TestPmapInt32Float64Err() is high (> 15) (gocyclo)
    • Line 6542: warning: cyclomatic complexity 19 of function TestPmapUintFloat64Err() is high (> 15) (gocyclo)
    • Line 4336: warning: cyclomatic complexity 19 of function TestPmapInt16Float64Err() is high (> 15) (gocyclo)
    • Line 8579: warning: cyclomatic complexity 19 of function TestPmapUint32BoolErr() is high (> 15) (gocyclo)
    • Line 4676: warning: cyclomatic complexity 19 of function TestPmapInt8Int16Err() is high (> 15) (gocyclo)
    • Line 3403: warning: cyclomatic complexity 19 of function TestPmapInt16Int64Err() is high (> 15) (gocyclo)
    • Line 4846: warning: cyclomatic complexity 19 of function TestPmapInt8Uint64Err() is high (> 15) (gocyclo)
    • Line 5016: warning: cyclomatic complexity 19 of function TestPmapInt8Uint16Err() is high (> 15) (gocyclo)
    • Line 10531: warning: cyclomatic complexity 19 of function TestPmapUint8Uint32Err() is high (> 15) (gocyclo)
    • Line 10361: warning: cyclomatic complexity 19 of function TestPmapUint8UintErr() is high (> 15) (gocyclo)
    • Line 2555: warning: cyclomatic complexity 19 of function TestPmapInt32UintErr() is high (> 15) (gocyclo)
    • Line 7985: warning: cyclomatic complexity 19 of function TestPmapUint32Int16Err() is high (> 15) (gocyclo)
    • Line 7900: warning: cyclomatic complexity 19 of function TestPmapUint32Int32Err() is high (> 15) (gocyclo)
    • Line 8663: warning: cyclomatic complexity 19 of function TestPmapUint32Float32Err() is high (> 15) (gocyclo)
    • Line 9936: warning: cyclomatic complexity 19 of function TestPmapUint8IntErr() is high (> 15) (gocyclo)
    • Line 9766: warning: cyclomatic complexity 19 of function TestPmapUint16Float32Err() is high (> 15) (gocyclo)
    • Line 9513: warning: cyclomatic complexity 19 of function TestPmapUint16Uint8Err() is high (> 15) (gocyclo)
    • Line 7560: warning: cyclomatic complexity 19 of function TestPmapUint64Float32Err() is high (> 15) (gocyclo)
    • Line 9173: warning: cyclomatic complexity 19 of function TestPmapUint16Int8Err() is high (> 15) (gocyclo)
    • Line 8748: warning: cyclomatic complexity 19 of function TestPmapUint32Float64Err() is high (> 15) (gocyclo)
    • Line 9003: warning: cyclomatic complexity 19 of function TestPmapUint16Int32Err() is high (> 15) (gocyclo)
    • Line 4591: warning: cyclomatic complexity 19 of function TestPmapInt8Int32Err() is high (> 15) (gocyclo)
    • Line 8410: warning: cyclomatic complexity 19 of function TestPmapUint32Uint8Err() is high (> 15) (gocyclo)
    • Line 8240: warning: cyclomatic complexity 19 of function TestPmapUint32Uint64Err() is high (> 15) (gocyclo)
    • Line 2130: warning: cyclomatic complexity 19 of function TestPmapInt64Float64Err() is high (> 15) (gocyclo)
    • Line 8070: warning: cyclomatic complexity 19 of function TestPmapUint32Int8Err() is high (> 15) (gocyclo)
    • Line 10106: warning: cyclomatic complexity 19 of function TestPmapUint8Int32Err() is high (> 15) (gocyclo)
    • Line 2300: warning: cyclomatic complexity 19 of function TestPmapInt32Int64Err() is high (> 15) (gocyclo)
    • Line 7730: warning: cyclomatic complexity 19 of function TestPmapUint32IntErr() is high (> 15) (gocyclo)
    • Line 9343: warning: cyclomatic complexity 19 of function TestPmapUint16Uint64Err() is high (> 15) (gocyclo)
    • Line 6373: warning: cyclomatic complexity 19 of function TestPmapUintBoolErr() is high (> 15) (gocyclo)
    • Line 5524: warning: cyclomatic complexity 19 of function TestPmapUintIntErr() is high (> 15) (gocyclo)
    • Line 7222: warning: cyclomatic complexity 19 of function TestPmapUint64Uint16Err() is high (> 15) (gocyclo)
    • Line 3658: warning: cyclomatic complexity 19 of function TestPmapInt16UintErr() is high (> 15) (gocyclo)
    • Line 7052: warning: cyclomatic complexity 19 of function TestPmapUint64UintErr() is high (> 15) (gocyclo)
    • Line 3488: warning: cyclomatic complexity 19 of function TestPmapInt16Int32Err() is high (> 15) (gocyclo)
    • Line 6882: warning: cyclomatic complexity 19 of function TestPmapUint64Int16Err() is high (> 15) (gocyclo)
    • Line 6712: warning: cyclomatic complexity 19 of function TestPmapUint64Int64Err() is high (> 15) (gocyclo)
    • Line 4167: warning: cyclomatic complexity 19 of function TestPmapInt16BoolErr() is high (> 15) (gocyclo)
    • Line 11291: warning: cyclomatic complexity 18 of function TestPmapStrInt16Err() is high (> 15) (gocyclo)
    • Line 10701: warning: cyclomatic complexity 18 of function TestPmapUint8StrErr() is high (> 15) (gocyclo)
    • Line 11795: warning: cyclomatic complexity 18 of function TestPmapStrUint8Err() is high (> 15) (gocyclo)
    • Line 11627: warning: cyclomatic complexity 18 of function TestPmapStrUint32Err() is high (> 15) (gocyclo)
    • Line 11207: warning: cyclomatic complexity 18 of function TestPmapStrInt32Err() is high (> 15) (gocyclo)
    • Line 11459: warning: cyclomatic complexity 18 of function TestPmapStrUintErr() is high (> 15) (gocyclo)
    • Line 11711: warning: cyclomatic complexity 18 of function TestPmapStrUint16Err() is high (> 15) (gocyclo)
    • Line 11543: warning: cyclomatic complexity 18 of function TestPmapStrUint64Err() is high (> 15) (gocyclo)
    • Line 11375: warning: cyclomatic complexity 18 of function TestPmapStrInt8Err() is high (> 15) (gocyclo)
    • Line 9598: warning: cyclomatic complexity 18 of function TestPmapUint16StrErr() is high (> 15) (gocyclo)
    • Line 8495: warning: cyclomatic complexity 18 of function TestPmapUint32StrErr() is high (> 15) (gocyclo)
    • Line 15176: warning: cyclomatic complexity 18 of function TestPmapFloat64StrErr() is high (> 15) (gocyclo)
    • Line 7392: warning: cyclomatic complexity 18 of function TestPmapUint64StrErr() is high (> 15) (gocyclo)
    • Line 12047: warning: cyclomatic complexity 18 of function TestPmapStrFloat64Err() is high (> 15) (gocyclo)
    • Line 5186: warning: cyclomatic complexity 18 of function TestPmapInt8StrErr() is high (> 15) (gocyclo)
    • Line 11039: warning: cyclomatic complexity 18 of function TestPmapStrIntErr() is high (> 15) (gocyclo)
    • Line 774: warning: cyclomatic complexity 18 of function TestPmapIntStrErr() is high (> 15) (gocyclo)
    • Line 6289: warning: cyclomatic complexity 18 of function TestPmapUintStrErr() is high (> 15) (gocyclo)
    • Line 11123: warning: cyclomatic complexity 18 of function TestPmapStrInt64Err() is high (> 15) (gocyclo)
    • Line 14073: warning: cyclomatic complexity 18 of function TestPmapFloat32StrErr() is high (> 15) (gocyclo)
    • Line 2980: warning: cyclomatic complexity 18 of function TestPmapInt32StrErr() is high (> 15) (gocyclo)
    • Line 1877: warning: cyclomatic complexity 18 of function TestPmapInt64StrErr() is high (> 15) (gocyclo)
    • Line 4083: warning: cyclomatic complexity 18 of function TestPmapInt16StrErr() is high (> 15) (gocyclo)
    • Line 11963: warning: cyclomatic complexity 18 of function TestPmapStrFloat32Err() is high (> 15) (gocyclo)
    • functional-go/fp/pmapioptrerr_test.go
    • Line 7180: warning: cyclomatic complexity 19 of function TestPmapUint64Int64PtrErr() is high (> 15) (gocyclo)
    • Line 282: warning: cyclomatic complexity 19 of function TestPmapIntInt8PtrErr() is high (> 15) (gocyclo)
    • Line 9267: warning: cyclomatic complexity 19 of function TestPmapUint32Float32PtrErr() is high (> 15) (gocyclo)
    • Line 1644: warning: cyclomatic complexity 19 of function TestPmapInt64Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 10177: warning: cyclomatic complexity 19 of function TestPmapUint16Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 2551: warning: cyclomatic complexity 19 of function TestPmapInt32Int16PtrErr() is high (> 15) (gocyclo)
    • Line 2460: warning: cyclomatic complexity 19 of function TestPmapInt32Int64PtrErr() is high (> 15) (gocyclo)
    • Line 8633: warning: cyclomatic complexity 19 of function TestPmapUint32Int8PtrErr() is high (> 15) (gocyclo)
    • Line 10538: warning: cyclomatic complexity 19 of function TestPmapUint16Float64PtrErr() is high (> 15) (gocyclo)
    • Line 100: warning: cyclomatic complexity 19 of function TestPmapIntInt32PtrErr() is high (> 15) (gocyclo)
    • Line 9: warning: cyclomatic complexity 19 of function TestPmapIntInt64PtrErr() is high (> 15) (gocyclo)
    • Line 737: warning: cyclomatic complexity 19 of function TestPmapIntUint8PtrErr() is high (> 15) (gocyclo)
    • Line 3367: warning: cyclomatic complexity 19 of function TestPmapInt32Float32PtrErr() is high (> 15) (gocyclo)
    • Line 191: warning: cyclomatic complexity 19 of function TestPmapIntInt16PtrErr() is high (> 15) (gocyclo)
    • Line 646: warning: cyclomatic complexity 19 of function TestPmapIntUint16PtrErr() is high (> 15) (gocyclo)
    • Line 555: warning: cyclomatic complexity 19 of function TestPmapIntUint32PtrErr() is high (> 15) (gocyclo)
    • Line 464: warning: cyclomatic complexity 19 of function TestPmapIntUint64PtrErr() is high (> 15) (gocyclo)
    • Line 373: warning: cyclomatic complexity 19 of function TestPmapIntUintPtrErr() is high (> 15) (gocyclo)
    • Line 2915: warning: cyclomatic complexity 19 of function TestPmapInt32Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 4638: warning: cyclomatic complexity 19 of function TestPmapInt16Float64PtrErr() is high (> 15) (gocyclo)
    • Line 3731: warning: cyclomatic complexity 19 of function TestPmapInt16Int32PtrErr() is high (> 15) (gocyclo)
    • Line 3006: warning: cyclomatic complexity 19 of function TestPmapInt32Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 3913: warning: cyclomatic complexity 19 of function TestPmapInt16UintPtrErr() is high (> 15) (gocyclo)
    • Line 1553: warning: cyclomatic complexity 19 of function TestPmapInt64UintPtrErr() is high (> 15) (gocyclo)
    • Line 3276: warning: cyclomatic complexity 19 of function TestPmapInt32BoolPtrErr() is high (> 15) (gocyclo)
    • Line 1189: warning: cyclomatic complexity 19 of function TestPmapInt64IntPtrErr() is high (> 15) (gocyclo)
    • Line 1826: warning: cyclomatic complexity 19 of function TestPmapInt64Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 1280: warning: cyclomatic complexity 19 of function TestPmapInt64Int32PtrErr() is high (> 15) (gocyclo)
    • Line 2824: warning: cyclomatic complexity 19 of function TestPmapInt32Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 5093: warning: cyclomatic complexity 19 of function TestPmapInt8UintPtrErr() is high (> 15) (gocyclo)
    • Line 3458: warning: cyclomatic complexity 19 of function TestPmapInt32Float64PtrErr() is high (> 15) (gocyclo)
    • Line 2733: warning: cyclomatic complexity 19 of function TestPmapInt32UintPtrErr() is high (> 15) (gocyclo)
    • Line 1098: warning: cyclomatic complexity 19 of function TestPmapIntFloat64PtrErr() is high (> 15) (gocyclo)
    • Line 3097: warning: cyclomatic complexity 19 of function TestPmapInt32Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 3640: warning: cyclomatic complexity 19 of function TestPmapInt16Int64PtrErr() is high (> 15) (gocyclo)
    • Line 1462: warning: cyclomatic complexity 19 of function TestPmapInt64Int8PtrErr() is high (> 15) (gocyclo)
    • Line 916: warning: cyclomatic complexity 19 of function TestPmapIntBoolPtrErr() is high (> 15) (gocyclo)
    • Line 3822: warning: cyclomatic complexity 19 of function TestPmapInt16Int8PtrErr() is high (> 15) (gocyclo)
    • Line 5002: warning: cyclomatic complexity 19 of function TestPmapInt8Int16PtrErr() is high (> 15) (gocyclo)
    • Line 1007: warning: cyclomatic complexity 19 of function TestPmapIntFloat32PtrErr() is high (> 15) (gocyclo)
    • Line 1371: warning: cyclomatic complexity 19 of function TestPmapInt64Int16PtrErr() is high (> 15) (gocyclo)
    • Line 2187: warning: cyclomatic complexity 19 of function TestPmapInt64Float32PtrErr() is high (> 15) (gocyclo)
    • Line 2096: warning: cyclomatic complexity 19 of function TestPmapInt64BoolPtrErr() is high (> 15) (gocyclo)
    • Line 4004: warning: cyclomatic complexity 19 of function TestPmapInt16Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 2278: warning: cyclomatic complexity 19 of function TestPmapInt64Float64PtrErr() is high (> 15) (gocyclo)
    • Line 4095: warning: cyclomatic complexity 19 of function TestPmapInt16Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 1917: warning: cyclomatic complexity 19 of function TestPmapInt64Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 2642: warning: cyclomatic complexity 19 of function TestPmapInt32Int8PtrErr() is high (> 15) (gocyclo)
    • Line 2369: warning: cyclomatic complexity 19 of function TestPmapInt32IntPtrErr() is high (> 15) (gocyclo)
    • Line 5457: warning: cyclomatic complexity 19 of function TestPmapInt8Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 3549: warning: cyclomatic complexity 19 of function TestPmapInt16IntPtrErr() is high (> 15) (gocyclo)
    • Line 1735: warning: cyclomatic complexity 19 of function TestPmapInt64Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 6000: warning: cyclomatic complexity 19 of function TestPmapUintInt64PtrErr() is high (> 15) (gocyclo)
    • Line 6091: warning: cyclomatic complexity 19 of function TestPmapUintInt32PtrErr() is high (> 15) (gocyclo)
    • Line 6182: warning: cyclomatic complexity 19 of function TestPmapUintInt16PtrErr() is high (> 15) (gocyclo)
    • Line 6273: warning: cyclomatic complexity 19 of function TestPmapUintInt8PtrErr() is high (> 15) (gocyclo)
    • Line 6364: warning: cyclomatic complexity 19 of function TestPmapUintUint64PtrErr() is high (> 15) (gocyclo)
    • Line 4456: warning: cyclomatic complexity 19 of function TestPmapInt16BoolPtrErr() is high (> 15) (gocyclo)
    • Line 4277: warning: cyclomatic complexity 19 of function TestPmapInt16Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 4186: warning: cyclomatic complexity 19 of function TestPmapInt16Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 4547: warning: cyclomatic complexity 19 of function TestPmapInt16Float32PtrErr() is high (> 15) (gocyclo)
    • Line 6455: warning: cyclomatic complexity 19 of function TestPmapUintUint32PtrErr() is high (> 15) (gocyclo)
    • Line 4729: warning: cyclomatic complexity 19 of function TestPmapInt8IntPtrErr() is high (> 15) (gocyclo)
    • Line 5366: warning: cyclomatic complexity 19 of function TestPmapInt8Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 4911: warning: cyclomatic complexity 19 of function TestPmapInt8Int32PtrErr() is high (> 15) (gocyclo)
    • Line 4820: warning: cyclomatic complexity 19 of function TestPmapInt8Int64PtrErr() is high (> 15) (gocyclo)
    • Line 5275: warning: cyclomatic complexity 19 of function TestPmapInt8Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 5184: warning: cyclomatic complexity 19 of function TestPmapInt8Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 15967: warning: cyclomatic complexity 19 of function TestPmapFloat64Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 7271: warning: cyclomatic complexity 19 of function TestPmapUint64Int32PtrErr() is high (> 15) (gocyclo)
    • Line 8724: warning: cyclomatic complexity 19 of function TestPmapUint32UintPtrErr() is high (> 15) (gocyclo)
    • Line 9176: warning: cyclomatic complexity 19 of function TestPmapUint32BoolPtrErr() is high (> 15) (gocyclo)
    • Line 7817: warning: cyclomatic complexity 19 of function TestPmapUint64Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 8542: warning: cyclomatic complexity 19 of function TestPmapUint32Int16PtrErr() is high (> 15) (gocyclo)
    • Line 13610: warning: cyclomatic complexity 19 of function TestPmapBoolUint32PtrErr() is high (> 15) (gocyclo)
    • Line 5818: warning: cyclomatic complexity 19 of function TestPmapInt8Float64PtrErr() is high (> 15) (gocyclo)
    • Line 9813: warning: cyclomatic complexity 19 of function TestPmapUint16Int8PtrErr() is high (> 15) (gocyclo)
    • Line 6546: warning: cyclomatic complexity 19 of function TestPmapUintUint16PtrErr() is high (> 15) (gocyclo)
    • Line 8178: warning: cyclomatic complexity 19 of function TestPmapUint64Float64PtrErr() is high (> 15) (gocyclo)
    • Line 7996: warning: cyclomatic complexity 19 of function TestPmapUint64BoolPtrErr() is high (> 15) (gocyclo)
    • Line 14241: warning: cyclomatic complexity 19 of function TestPmapFloat32Int64PtrErr() is high (> 15) (gocyclo)
    • Line 13340: warning: cyclomatic complexity 19 of function TestPmapBoolInt8PtrErr() is high (> 15) (gocyclo)
    • Line 5727: warning: cyclomatic complexity 19 of function TestPmapInt8Float32PtrErr() is high (> 15) (gocyclo)
    • Line 11627: warning: cyclomatic complexity 19 of function TestPmapUint8Float32PtrErr() is high (> 15) (gocyclo)
    • Line 13520: warning: cyclomatic complexity 19 of function TestPmapBoolUint64PtrErr() is high (> 15) (gocyclo)
    • Line 7544: warning: cyclomatic complexity 19 of function TestPmapUint64UintPtrErr() is high (> 15) (gocyclo)
    • Line 8815: warning: cyclomatic complexity 19 of function TestPmapUint32Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 7726: warning: cyclomatic complexity 19 of function TestPmapUint64Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 5909: warning: cyclomatic complexity 19 of function TestPmapUintIntPtrErr() is high (> 15) (gocyclo)
    • Line 13880: warning: cyclomatic complexity 19 of function TestPmapBoolStrPtrErr() is high (> 15) (gocyclo)
    • Line 6637: warning: cyclomatic complexity 19 of function TestPmapUintUint8PtrErr() is high (> 15) (gocyclo)
    • Line 8087: warning: cyclomatic complexity 19 of function TestPmapUint64Float32PtrErr() is high (> 15) (gocyclo)
    • Line 5636: warning: cyclomatic complexity 19 of function TestPmapInt8BoolPtrErr() is high (> 15) (gocyclo)
    • Line 8360: warning: cyclomatic complexity 19 of function TestPmapUint32Int64PtrErr() is high (> 15) (gocyclo)
    • Line 8269: warning: cyclomatic complexity 19 of function TestPmapUint32IntPtrErr() is high (> 15) (gocyclo)
    • Line 6816: warning: cyclomatic complexity 19 of function TestPmapUintBoolPtrErr() is high (> 15) (gocyclo)
    • Line 7635: warning: cyclomatic complexity 19 of function TestPmapUint64Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 10086: warning: cyclomatic complexity 19 of function TestPmapUint16Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 10447: warning: cyclomatic complexity 19 of function TestPmapUint16Float32PtrErr() is high (> 15) (gocyclo)
    • Line 15512: warning: cyclomatic complexity 19 of function TestPmapFloat64Int32PtrErr() is high (> 15) (gocyclo)
    • Line 16149: warning: cyclomatic complexity 19 of function TestPmapFloat64Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 11357: warning: cyclomatic complexity 19 of function TestPmapUint8Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 14787: warning: cyclomatic complexity 19 of function TestPmapFloat32Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 15876: warning: cyclomatic complexity 19 of function TestPmapFloat64Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 9358: warning: cyclomatic complexity 19 of function TestPmapUint32Float64PtrErr() is high (> 15) (gocyclo)
    • Line 12980: warning: cyclomatic complexity 19 of function TestPmapBoolIntPtrErr() is high (> 15) (gocyclo)
    • Line 10811: warning: cyclomatic complexity 19 of function TestPmapUint8Int32PtrErr() is high (> 15) (gocyclo)
    • Line 13700: warning: cyclomatic complexity 19 of function TestPmapBoolUint16PtrErr() is high (> 15) (gocyclo)
    • Line 14423: warning: cyclomatic complexity 19 of function TestPmapFloat32Int16PtrErr() is high (> 15) (gocyclo)
    • Line 15148: warning: cyclomatic complexity 19 of function TestPmapFloat32BoolPtrErr() is high (> 15) (gocyclo)
    • Line 15421: warning: cyclomatic complexity 19 of function TestPmapFloat64Int64PtrErr() is high (> 15) (gocyclo)
    • Line 10993: warning: cyclomatic complexity 19 of function TestPmapUint8Int8PtrErr() is high (> 15) (gocyclo)
    • Line 7453: warning: cyclomatic complexity 19 of function TestPmapUint64Int8PtrErr() is high (> 15) (gocyclo)
    • Line 10629: warning: cyclomatic complexity 19 of function TestPmapUint8IntPtrErr() is high (> 15) (gocyclo)
    • Line 13160: warning: cyclomatic complexity 19 of function TestPmapBoolInt32PtrErr() is high (> 15) (gocyclo)
    • Line 9540: warning: cyclomatic complexity 19 of function TestPmapUint16Int64PtrErr() is high (> 15) (gocyclo)
    • Line 7362: warning: cyclomatic complexity 19 of function TestPmapUint64Int16PtrErr() is high (> 15) (gocyclo)
    • Line 15694: warning: cyclomatic complexity 19 of function TestPmapFloat64Int8PtrErr() is high (> 15) (gocyclo)
    • Line 16328: warning: cyclomatic complexity 19 of function TestPmapFloat64BoolPtrErr() is high (> 15) (gocyclo)
    • Line 16058: warning: cyclomatic complexity 19 of function TestPmapFloat64Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 10902: warning: cyclomatic complexity 19 of function TestPmapUint8Int16PtrErr() is high (> 15) (gocyclo)
    • Line 14605: warning: cyclomatic complexity 19 of function TestPmapFloat32UintPtrErr() is high (> 15) (gocyclo)
    • Line 9904: warning: cyclomatic complexity 19 of function TestPmapUint16UintPtrErr() is high (> 15) (gocyclo)
    • Line 14969: warning: cyclomatic complexity 19 of function TestPmapFloat32Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 11718: warning: cyclomatic complexity 19 of function TestPmapUint8Float64PtrErr() is high (> 15) (gocyclo)
    • Line 15330: warning: cyclomatic complexity 19 of function TestPmapFloat64IntPtrErr() is high (> 15) (gocyclo)
    • Line 8451: warning: cyclomatic complexity 19 of function TestPmapUint32Int32PtrErr() is high (> 15) (gocyclo)
    • Line 15785: warning: cyclomatic complexity 19 of function TestPmapFloat64UintPtrErr() is high (> 15) (gocyclo)
    • Line 13250: warning: cyclomatic complexity 19 of function TestPmapBoolInt16PtrErr() is high (> 15) (gocyclo)
    • Line 11266: warning: cyclomatic complexity 19 of function TestPmapUint8Uint32PtrErr() is high (> 15) (gocyclo)
    • Line 11536: warning: cyclomatic complexity 19 of function TestPmapUint8BoolPtrErr() is high (> 15) (gocyclo)
    • Line 10356: warning: cyclomatic complexity 19 of function TestPmapUint16BoolPtrErr() is high (> 15) (gocyclo)
    • Line 12709: warning: cyclomatic complexity 19 of function TestPmapStrBoolPtrErr() is high (> 15) (gocyclo)
    • Line 9449: warning: cyclomatic complexity 19 of function TestPmapUint16IntPtrErr() is high (> 15) (gocyclo)
    • Line 16419: warning: cyclomatic complexity 19 of function TestPmapFloat64Float32PtrErr() is high (> 15) (gocyclo)
    • Line 8906: warning: cyclomatic complexity 19 of function TestPmapUint32Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 13070: warning: cyclomatic complexity 19 of function TestPmapBoolInt64PtrErr() is high (> 15) (gocyclo)
    • Line 10720: warning: cyclomatic complexity 19 of function TestPmapUint8Int64PtrErr() is high (> 15) (gocyclo)
    • Line 6907: warning: cyclomatic complexity 19 of function TestPmapUintFloat32PtrErr() is high (> 15) (gocyclo)
    • Line 13430: warning: cyclomatic complexity 19 of function TestPmapBoolUintPtrErr() is high (> 15) (gocyclo)
    • Line 6998: warning: cyclomatic complexity 19 of function TestPmapUintFloat64PtrErr() is high (> 15) (gocyclo)
    • Line 9631: warning: cyclomatic complexity 19 of function TestPmapUint16Int32PtrErr() is high (> 15) (gocyclo)
    • Line 13790: warning: cyclomatic complexity 19 of function TestPmapBoolUint8PtrErr() is high (> 15) (gocyclo)
    • Line 11084: warning: cyclomatic complexity 19 of function TestPmapUint8UintPtrErr() is high (> 15) (gocyclo)
    • Line 13970: warning: cyclomatic complexity 19 of function TestPmapBoolFloat32PtrErr() is high (> 15) (gocyclo)
    • Line 14150: warning: cyclomatic complexity 19 of function TestPmapFloat32IntPtrErr() is high (> 15) (gocyclo)
    • Line 7089: warning: cyclomatic complexity 19 of function TestPmapUint64IntPtrErr() is high (> 15) (gocyclo)
    • Line 14332: warning: cyclomatic complexity 19 of function TestPmapFloat32Int32PtrErr() is high (> 15) (gocyclo)
    • Line 14514: warning: cyclomatic complexity 19 of function TestPmapFloat32Int8PtrErr() is high (> 15) (gocyclo)
    • Line 14696: warning: cyclomatic complexity 19 of function TestPmapFloat32Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 14878: warning: cyclomatic complexity 19 of function TestPmapFloat32Uint16PtrErr() is high (> 15) (gocyclo)
    • Line 9995: warning: cyclomatic complexity 19 of function TestPmapUint16Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 15239: warning: cyclomatic complexity 19 of function TestPmapFloat32Float64PtrErr() is high (> 15) (gocyclo)
    • Line 15603: warning: cyclomatic complexity 19 of function TestPmapFloat64Int16PtrErr() is high (> 15) (gocyclo)
    • Line 8997: warning: cyclomatic complexity 19 of function TestPmapUint32Uint8PtrErr() is high (> 15) (gocyclo)
    • Line 9722: warning: cyclomatic complexity 19 of function TestPmapUint16Int16PtrErr() is high (> 15) (gocyclo)
    • Line 11175: warning: cyclomatic complexity 19 of function TestPmapUint8Uint64PtrErr() is high (> 15) (gocyclo)
    • Line 14060: warning: cyclomatic complexity 19 of function TestPmapBoolFloat64PtrErr() is high (> 15) (gocyclo)
    • Line 828: warning: cyclomatic complexity 18 of function TestPmapIntStrPtrErr() is high (> 15) (gocyclo)
    • Line 7908: warning: cyclomatic complexity 18 of function TestPmapUint64StrPtrErr() is high (> 15) (gocyclo)
    • Line 12079: warning: cyclomatic complexity 18 of function TestPmapStrInt16PtrErr() is high (> 15) (gocyclo)
    • Line 16240: warning: cyclomatic complexity 18 of function TestPmapFloat64StrPtrErr() is high (> 15) (gocyclo)
    • Line 2008: warning: cyclomatic complexity 18 of function TestPmapInt64StrPtrErr() is high (> 15) (gocyclo)
    • Line 12529: warning: cyclomatic complexity 18 of function TestPmapStrUint16PtrErr() is high (> 15) (gocyclo)
    • Line 12800: warning: cyclomatic complexity 18 of function TestPmapStrFloat32PtrErr() is high (> 15) (gocyclo)
    • Line 15060: warning: cyclomatic complexity 18 of function TestPmapFloat32StrPtrErr() is high (> 15) (gocyclo)
    • Line 11448: warning: cyclomatic complexity 18 of function TestPmapUint8StrPtrErr() is high (> 15) (gocyclo)
    • Line 11989: warning: cyclomatic complexity 18 of function TestPmapStrInt32PtrErr() is high (> 15) (gocyclo)
    • Line 12439: warning: cyclomatic complexity 18 of function TestPmapStrUint32PtrErr() is high (> 15) (gocyclo)
    • Line 12259: warning: cyclomatic complexity 18 of function TestPmapStrUintPtrErr() is high (> 15) (gocyclo)
    • Line 3188: warning: cyclomatic complexity 18 of function TestPmapInt32StrPtrErr() is high (> 15) (gocyclo)
    • Line 10268: warning: cyclomatic complexity 18 of function TestPmapUint16StrPtrErr() is high (> 15) (gocyclo)
    • Line 11809: warning: cyclomatic complexity 18 of function TestPmapStrIntPtrErr() is high (> 15) (gocyclo)
    • Line 4368: warning: cyclomatic complexity 18 of function TestPmapInt16StrPtrErr() is high (> 15) (gocyclo)
    • Line 6728: warning: cyclomatic complexity 18 of function TestPmapUintStrPtrErr() is high (> 15) (gocyclo)
    • Line 12890: warning: cyclomatic complexity 18 of function TestPmapStrFloat64PtrErr() is high (> 15) (gocyclo)
    • Line 5548: warning: cyclomatic complexity 18 of function TestPmapInt8StrPtrErr() is high (> 15) (gocyclo)
    • Line 12349: warning: cyclomatic complexity 18 of function TestPmapStrUint64PtrErr() is high (> 15) (gocyclo)
    • Line 12619: warning: cyclomatic complexity 18 of function TestPmapStrUint8PtrErr() is high (> 15) (gocyclo)
    • Line 12169: warning: cyclomatic complexity 18 of function TestPmapStrInt8PtrErr() is high (> 15) (gocyclo)
    • Line 11899: warning: cyclomatic complexity 18 of function TestPmapStrInt64PtrErr() is high (> 15) (gocyclo)
    • Line 9088: warning: cyclomatic complexity 18 of function TestPmapUint32StrPtrErr() is high (> 15) (gocyclo)

ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!