Select Git revision
-
Md. Alim Ul Karim authored
"Make necessary changes for PathsChmods + Add new constants + Add interfaces for future usages + Dynamic Type"
Md. Alim Ul Karim authored"Make necessary changes for PathsChmods + Add new constants + Add interfaces for future usages + Dynamic Type"
WrapWithStartEnd.go 312 B
package simplewrap
// WithStartEnd wrapper + source + wrapper
func WithStartEnd(wrapper, source string) string {
return wrapper + source + wrapper
}
// WithStartEndPtr wrapper + source + wrapper
func WithStartEndPtr(wrapper, source *string) *string {
final := *wrapper + *source + *wrapper
return &final
}