String return the identifier as a string
()
| 29 | |
| 30 | // String return the identifier as a string |
| 31 | func (i Id) String() string { |
| 32 | return string(i) |
| 33 | } |
| 34 | |
| 35 | // Human return the identifier, shortened for human consumption |
| 36 | func (i Id) Human() string { |