Classdef: Difference between revisions

From Octave
Jump to navigation Jump to search
(init)
 
No edit summary
Line 1: Line 1:
This page is a stub. We should begin documenting what classdef is implemented and what is not.
This page is a stub. We should begin documenting what classdef is implemented and what is not.
==== not supported ====
* enumeration
* build-in class as superclass
** <source lang="octave" enclose="none">classdef nonsense < uint32</source>
==== Classdef examples in the wild ====
* http://hg.savannah.gnu.org/hgweb/octave/file/tip/scripts/general/inputParser.m
* https://github.com/markuman/go-redis

Revision as of 20:00, 8 April 2015

This page is a stub. We should begin documenting what classdef is implemented and what is not.

not supported

  • enumeration
  • build-in class as superclass
    • classdef nonsense < uint32

Classdef examples in the wild