Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

iset(3pub) [debian man page]

ISET(3pub)						       C Programmer's Manual							ISET(3pub)

NAME
iset_create, iset_destroy, iset_copy, iset_is_empty, iset_add, iset_add_range, iset_remove, iset_remove_range, iset_clear, iset_contains, iset_union, iset_diff, iset_isect, iset_range, iset_nth_range - manipulate sets of integers SYNOPSIS
#include <publib.h> Iset *iset_create(void); void iset_destroy(Iset *is); Iset *iset_copy(const Iset *is); int iset_is_empty(const Iset *is); int iset_add(Iset *is, long number); int iset_add_range(Iset *is, long number1, long number2); int iset_remove(Iset *is, long number); int iset_remove_range(Iset *is, long number1, long number2); void iset_clear(Iset *is); int iset_contains(const Iset *is, long number); int iset_union(Iset *is1, const Iset *is2); int iset_diff(Iset *is1, const Iset *is2); int iset_isect(Iset *is1, const Iset *is2); void iset_range(const Iset *is, long *lowest, long *highest); int iset_nth_range(const Iset *is, long n, long *lo, long *hi); DESCRIPTION
These functions operate on sets of integers (of type long). You clever people will know how to use them without my help, which saves me from writing a manual page. SEE ALSO
publib(3), bitarr(3) AUTHOR
Lars Wirzenius (lars.wirzenius@helsinki.fi) Publib C Programmer's Manual ISET(3pub)

Check Out this Related Man Page

ISET(3pub)						       C Programmer's Manual							ISET(3pub)

NAME
iset_create, iset_destroy, iset_copy, iset_is_empty, iset_add, iset_add_range, iset_remove, iset_remove_range, iset_clear, iset_contains, iset_union, iset_diff, iset_isect, iset_range, iset_nth_range - manipulate sets of integers SYNOPSIS
#include <publib.h> Iset *iset_create(void); void iset_destroy(Iset *is); Iset *iset_copy(const Iset *is); int iset_is_empty(const Iset *is); int iset_add(Iset *is, long number); int iset_add_range(Iset *is, long number1, long number2); int iset_remove(Iset *is, long number); int iset_remove_range(Iset *is, long number1, long number2); void iset_clear(Iset *is); int iset_contains(const Iset *is, long number); int iset_union(Iset *is1, const Iset *is2); int iset_diff(Iset *is1, const Iset *is2); int iset_isect(Iset *is1, const Iset *is2); void iset_range(const Iset *is, long *lowest, long *highest); int iset_nth_range(const Iset *is, long n, long *lo, long *hi); DESCRIPTION
These functions operate on sets of integers (of type long). You clever people will know how to use them without my help, which saves me from writing a manual page. SEE ALSO
publib(3), bitarr(3) AUTHOR
Lars Wirzenius (lars.wirzenius@helsinki.fi) Publib C Programmer's Manual ISET(3pub)
Man Page

We Also Found This Discussion For You

1. UNIX for Dummies Questions & Answers

Gnuplot multiset graphic

Hello everyone, im trying to create a special graphic with gnuplot and dont really get where i want. What i want to do is this: I have 20 textfiles containing 8000x2 matrices, where the first column represents the time and the second the amplitude of a wave. Now all 20 wave-functions shell... (0 Replies)
Discussion started by: Robin451987
0 Replies