NearXdu / converter

golang type conversions tool based on functional programming

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

converter

📘 Introduction

golang type conversions tool based on functional programming

🔨 Quick Start

package main

import (
	"fmt"
	c "github.com/NearXdu/converter"
)

func main() {
	t1 := "hello,world"
	r1 := c.Convert2StringSet(c.SplitWith(","))(t1)
	fmt.Printf("%v",r1)
}

About

golang type conversions tool based on functional programming


Languages

Language:Go 100.0%