:stackItemsAdded leaf node


Label

stack items added

Description

Specifies the number of items added to the stack by executing an Opcode.

Usage

DOMAINPROPERTYRANGE
:Opcode :stackItemsAdded xsd:integer

Implementation

@prefix : <http://ethon.consensys.net/Contracts/> .
@prefix ethon: <http://ethon.consensys.net/> .
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:stackItemsAdded a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "stack items added"@en ;
    ethon:suggestedStringRepresentation "stackItemsAdded" ;
    rdfs:comment "Specifies the number of items added to the stack by executing an Opcode."@en ;
    rdfs:domain :Opcode ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :EthOnContractsDataProperty ;
    ns:term_status "unstable" .