Skip to content
Snippets Groups Projects

"Make necessary changes for PathsChmods + Add new constants + Add interfaces for future usages + Dynamic Type"

Compare and Show latest version
16 files
+ 599
39
Compare changes
  • Side-by-side
  • Inline
Files
16
+ 9
7
@@ -3,7 +3,7 @@ package main
import (
"fmt"
"gitlab.com/evatix-go/core/bytetype"
"gitlab.com/evatix-go/core/constants"
"gitlab.com/evatix-go/core/coredata/coredynamic"
"gitlab.com/evatix-go/core/coredata/corestr"
)
@@ -66,13 +66,15 @@ func main() {
// fmt.Println(dynamicCollection.StringJson())
// fmt.Println(dynamicCollection.At(2).IsPrimitive())
// fmt.Println(dynamicCollection.Items())
//
// _ = bytetype.Variant(1).RangesInvalidMessage()
// bt := bytetype.Variant(1)
// fmt.Println(bt.StringJsonMust())
// fmt.Println(bt.Value())
// fmt.Println(bt.IsValidRange())
_ = bytetype.Variant(1).RangesInvalidMessage()
bt := bytetype.Variant(1)
fmt.Println(bt.StringJsonMust())
fmt.Println(bt.Value())
fmt.Println(bt.IsValidRange())
fmt.Println(constants.MaxInt)
fmt.Println(constants.MinInt)
// fmt.Println(result.IsSliceOrArray())
// fmt.Println(result.IsMap())
// fmt.Println(result.InvalidError())
Loading