--- [ Character array constants ] ------------------------------------------- CharArray is an LLVM IR character array constant.
| 66 | |
| 67 | // CharArray is an LLVM IR character array constant. |
| 68 | type CharArray struct { |
| 69 | // Array type. |
| 70 | Typ *types.ArrayType |
| 71 | // Character array contents. |
| 72 | X []byte |
| 73 | } |
| 74 | |
| 75 | // NewCharArray returns a new character array constant based on the given |
| 76 | // character array contents. |
nothing calls this directly
no outgoing calls
no test coverage detected