github.com/microsoft/moc@v0.17.1/pkg/convert/convert.go (about)

     1  // Copyright (c) Microsoft Corporation.
     2  // Licensed under the Apache v2.0 license.
     3  package convert
     4  
     5  // ToStringPtr
     6  func ToStringPtr(val string) *string {
     7  	return &val
     8  }
     9  
    10  // ToInt32Ptr
    11  func ToInt32Ptr(val int32) *int32 {
    12  	return &val
    13  }