mirror of
https://github.com/interviewstreet/go-jira.git
synced 2024-11-28 08:39:03 +02:00
10 lines
179 B
Go
10 lines
179 B
Go
|
package jira
|
||
|
|
||
|
// Bool is a helper routine that allocates a new bool value
|
||
|
// to store v and returns a pointer to it.
|
||
|
func Bool(v bool) *bool {
|
||
|
p := new(bool)
|
||
|
*p = v
|
||
|
return p
|
||
|
}
|