[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/2] pkl: fix mktya doc and usage
From: |
Jose E. Marchesi |
Subject: |
Re: [PATCH 2/2] pkl: fix mktya doc and usage |
Date: |
Thu, 27 Oct 2022 22:47:26 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) |
Hi Mohammad.
Very nice patch, thanks.
> +/* Closures which are useful for creating array bounders. */
> +
> +type _Pkl_ClsN = () any;
> +type _Pkl_ClsI = () uint<64>;
> +type _Pkl_ClsO = () offset<uint<64>,1>;
We are generally using the convention to denote function types without
leaving a space between the argument types and the return type, like
this:
type _Pkl_ClsN = ()any;
type _Pkl_ClsI = ()uint<64>;
type _Pkl_ClsO = ()offset<uint<64>,1>;
Given that, OK for master.
Thanks!