Skip to content

aofdev/dtype

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dtype

Golang 1.15 Linter Go Report Card codecov

⚙️ Installation

go get -u github.com/aofdev/dtype

⚡️ Quickstart

package main

import (
	"fmt"

	d "github.com/aofdev/dtype"
)

const text = ""

func main() {
	value, isNull := d.DefaultStringWithNullable(text)
	fmt.Printf("value: %v isNull: %v", value, isNull)
}

//output: value:  isNull: <nil>

Releases

No releases published

Packages

No packages published

Languages