Accessing Parametric object from category

42 Views Asked by At

how to Access Parametric object from a ategory

:- category(attributes).

    :- public(info/1).
    info(Value) :- arg(1,_Array_,Value).

:- end_category.

:- object(array(_Array_),imports([attributes])).

this does not work ...

 *     Singleton variable: _Array_
1

There are 1 best solutions below

0
On BEST ANSWER

As entity parameters are logical variables, simply share them between the object and the category:

:- category(attributes(_Array_)).

    :- public(info/1).
    info(Value) :-
        arg(1, _Array_, Value).

:- end_category.


:- object(array(_Array_),
    imports(attributes(_Array_))).

:- end_object.