Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Option / Result / Vec / typle : basically we are interested in only inner values of the container


    Code Block
    [
    {
        "definition": "Option",
        "item": {
            "definition" : "bool"
        }
    },
    {
        "definition": "Result",
        "item": {
            "definition": "int",
            "mode": "CompactFourByte"
        },
    	"error": {
    		"definition": "IrohaError",
    	}
    },
    {
        "definition": "Vec",
        "items": {
            "definition": "bool"
        }
    },
    {
        "definition": "tuple",
        "items": [
            {
                "definition": "int",
                "mode": "CompactFourByte"
            },
            {
                "definition": "Option",
                "item": {
                    "definition" : "bool"
                }
            
            }
        ]
    }
    ]


...