package strslice

import "github.com/docker/engine-api/types/strslice"

Index

Types

type StrSlice

type StrSlice struct {
	// contains filtered or unexported fields
}

StrSlice represents a string or an array of strings. We need to override the json decoder to accept both options.

func New

func New(parts ...string) *StrSlice

New creates an StrSlice based on the specified parts (as strings).

func (*StrSlice) Len

func (e *StrSlice) Len() int

Len returns the number of parts of the StrSlice.

func (*StrSlice) MarshalJSON

func (e *StrSlice) MarshalJSON() ([]byte, error)

MarshalJSON Marshals (or serializes) the StrSlice into the json format. This method is needed to implement json.Marshaller.

func (*StrSlice) Slice

func (e *StrSlice) Slice() []string

Slice gets the parts of the StrSlice as a Slice of string.

func (*StrSlice) ToString

func (e *StrSlice) ToString() string

ToString gets space separated string of all the parts.

func (*StrSlice) UnmarshalJSON

func (e *StrSlice) UnmarshalJSON(b []byte) error

UnmarshalJSON decodes the byte slice whether it's a string or an array of strings. This method is needed to implement json.Unmarshaler.

Source Files

strslice.go

Version
v0.2.2
Published
Jan 14, 2016
Platform
js/wasm
Imports
2 packages
Last checked
2 hours ago

Tools for package owners.