xo-interpreter2 stack: + dict type + pop more pm types
This commit is contained in:
parent
bd811111a1
commit
a136642a20
1 changed files with 2 additions and 2 deletions
|
|
@ -72,7 +72,7 @@ namespace xo {
|
||||||
* Darray * v = DArray::array(mm, e1, e2, e3);
|
* Darray * v = DArray::array(mm, e1, e2, e3);
|
||||||
**/
|
**/
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
requires (std::same_as<Args, obj<AGCObject>> && ...)
|
requires (std::convertible_to<Args, obj<AGCObject>> && ...)
|
||||||
static DArray * array(obj<AAllocator> mm, Args... args);
|
static DArray * array(obj<AAllocator> mm, Args... args);
|
||||||
|
|
||||||
///@}
|
///@}
|
||||||
|
|
@ -170,7 +170,7 @@ namespace xo {
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
requires (std::same_as<Args, obj<DArray::AGCObject>> && ...)
|
requires (std::convertible_to<Args, obj<DArray::AGCObject>> && ...)
|
||||||
DArray *
|
DArray *
|
||||||
DArray::array(obj<AAllocator> mm, Args... args)
|
DArray::array(obj<AAllocator> mm, Args... args)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue