(struct: AbiStruct)
| 90 | } |
| 91 | |
| 92 | export const generateComparisonFunctions = (struct: AbiStruct): CodeGenFunction[] => { |
| 93 | return [ |
| 94 | generateEqualityFunction(struct), |
| 95 | generateIsNullFunction(struct) |
| 96 | ] |
| 97 | } |
| 98 | |
| 99 | export function getEncodeGroupFunction( |
| 100 | struct: ProcessedStruct, |
no test coverage detected