From: Matt Corallo Date: Mon, 10 Jan 2022 00:55:04 +0000 (+0000) Subject: Support mapping primitive arrays as non-arrays (eg numbers) X-Git-Tag: v0.0.104.1^2~9 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=dbce8d1aa627e4a632610895c5ea1fddfd9a24f1;hp=dbce8d1aa627e4a632610895c5ea1fddfd9a24f1;p=ldk-java Support mapping primitive arrays as non-arrays (eg numbers) TypeScript can't pass an array through to C, so we have to pass a pointer to a constructed array. This adds support in the relevant type-conversion logic to enable this (and uses it in TS). ---