MLT
7.28.0
|
double ended queue More...
#include "mlt_types.h"
Go to the source code of this file.
double ended queue
Copyright (C) 2003-2014 Meltytech, LLC
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
void mlt_deque_close | ( | mlt_deque | self | ) |
int mlt_deque_count | ( | mlt_deque | self | ) |
mlt_deque mlt_deque_init | ( | ) |
int mlt_deque_insert | ( | mlt_deque | self, |
void * | item, | ||
mlt_deque_compare | |||
) |
void* mlt_deque_peek | ( | mlt_deque | self, |
int | index | ||
) |
void* mlt_deque_peek_back | ( | mlt_deque | self | ) |
double mlt_deque_peek_back_double | ( | mlt_deque | self | ) |
int mlt_deque_peek_back_int | ( | mlt_deque | self | ) |
void* mlt_deque_peek_front | ( | mlt_deque | self | ) |
double mlt_deque_peek_front_double | ( | mlt_deque | self | ) |
int mlt_deque_peek_front_int | ( | mlt_deque | self | ) |
void* mlt_deque_pop_back | ( | mlt_deque | self | ) |
double mlt_deque_pop_back_double | ( | mlt_deque | self | ) |
int mlt_deque_pop_back_int | ( | mlt_deque | self | ) |
void* mlt_deque_pop_front | ( | mlt_deque | self | ) |
double mlt_deque_pop_front_double | ( | mlt_deque | self | ) |
int mlt_deque_pop_front_int | ( | mlt_deque | self | ) |
int mlt_deque_push_back | ( | mlt_deque | self, |
void * | item | ||
) |
int mlt_deque_push_back_double | ( | mlt_deque | self, |
double | item | ||
) |
int mlt_deque_push_back_int | ( | mlt_deque | self, |
int | item | ||
) |
int mlt_deque_push_front | ( | mlt_deque | self, |
void * | item | ||
) |
int mlt_deque_push_front_double | ( | mlt_deque | self, |
double | item | ||
) |
int mlt_deque_push_front_int | ( | mlt_deque | self, |
int | item | ||
) |