returns the number of outgoing edges for given node
| 226 | |
| 227 | // returns the number of outgoing edges for given node |
| 228 | SIValue AR_OUTGOINGDEGREE |
| 229 | ( |
| 230 | SIValue *argv, |
| 231 | int argc, |
| 232 | void *private_data |
| 233 | ) { |
| 234 | if(SI_TYPE(argv[0]) == T_NULL) { |
| 235 | return SI_NullVal(); |
| 236 | } |
| 237 | |
| 238 | return _AR_NodeDegree(argv, argc, GRAPH_EDGE_DIR_OUTGOING); |
| 239 | } |
| 240 | |
| 241 | SIValue AR_PROPERTY(SIValue *argv, int argc, void *private_data) { |
| 242 | // return NULL for missing graph entity |
nothing calls this directly
no test coverage detected