Mercurial > hg > octave-lyh
comparison src/ov-bool-sparse.h @ 11586:12df7854fa7c
strip trailing whitespace from source files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 17:24:59 -0500 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
comparison
equal
deleted
inserted
replaced
11585:1473d0cf86d2 | 11586:12df7854fa7c |
---|---|
82 type_conv_info numeric_conversion_function (void) const; | 82 type_conv_info numeric_conversion_function (void) const; |
83 | 83 |
84 octave_base_value *try_narrowing_conversion (void); | 84 octave_base_value *try_narrowing_conversion (void); |
85 | 85 |
86 // FIXME Adapt idx_vector to allow sparse logical indexing!! | 86 // FIXME Adapt idx_vector to allow sparse logical indexing!! |
87 idx_vector index_vector (void) const | 87 idx_vector index_vector (void) const |
88 { return idx_vector (bool_array_value ()); } | 88 { return idx_vector (bool_array_value ()); } |
89 | 89 |
90 builtin_type_t builtin_type (void) const { return btyp_bool; } | 90 builtin_type_t builtin_type (void) const { return btyp_bool; } |
91 | 91 |
92 bool is_bool_matrix (void) const { return true; } | 92 bool is_bool_matrix (void) const { return true; } |
127 | 127 |
128 octave_value convert_to_str_internal (bool pad, bool force, char type) const; | 128 octave_value convert_to_str_internal (bool pad, bool force, char type) const; |
129 | 129 |
130 bool save_binary (std::ostream& os, bool& save_as_floats); | 130 bool save_binary (std::ostream& os, bool& save_as_floats); |
131 | 131 |
132 bool load_binary (std::istream& is, bool swap, | 132 bool load_binary (std::istream& is, bool swap, |
133 oct_mach_info::float_format fmt); | 133 oct_mach_info::float_format fmt); |
134 | 134 |
135 #if defined (HAVE_HDF5) | 135 #if defined (HAVE_HDF5) |
136 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); | 136 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); |
137 | 137 |