
{{alias}}( dtype )
    Returns the number of bytes per element for a provided underlying ndarray
    data type.

    If provided an unknown/unsupported data type, the function returns `null`.

    Parameters
    ----------
    dtype: string|DataType
        Data type.

    Returns
    -------
    nbytes: integer|null
        Number of bytes per element.

    Examples
    --------
    > var nbytes = {{alias}}( 'float64' )
    8
    > nbytes = {{alias}}( 'generic' )
    null
    > nbytes = {{alias}}( 'foobar' )
    null

    See Also
    --------

