gitlab.com/evatix-go/core@v1.3.55/simplewrap/TitleSquareMetaUsingFmt.go (about)

     1  package simplewrap
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"gitlab.com/evatix-go/core/constants"
     7  )
     8  
     9  func TitleSquareMetaUsingFmt(
    10  	title,
    11  	value,
    12  	meta fmt.Stringer,
    13  ) string {
    14  	return fmt.Sprintf(
    15  		constants.SquareTitleMetaWrapFormat,
    16  		title,
    17  		value,
    18  		meta)
    19  }