GStreamer::Iterator man page on Fedora

Man page or keyword search:  
man Server   31170 pages
apropos Keyword Search (all sections)
Output format
Fedora logo
[printable version]

GStreamer::Iterator(3)User Contributed Perl DocumentatioGStreamer::Iterator(3)

NAME
       GStreamer::Iterator

SYNOPSIS
	 foreach ($bin -> iterate_elements()) {
	   do_something($_);
	 }

	 my $iter = $bin -> iterate_elements();
	 while ($_ = $iter -> next()) {
	   do_something($_);
	 }

DESCRIPTION
       There are two ways to use a GStreamer::Iterator.	 The first is to use
       normal Perl looping stuff:

	 foreach ($bin -> iterate_elements()) {
	   do_something($_);
	 }

       This is very elegant and Perl-ish, but may also be a bit slower.

       The alternative is to use the next method:

	 my $iter = $bin -> iterate_elements();
	 while ($_ = $iter -> next()) {
	   do_something($_);
	 }

       This is hardly beautiful but avoids looping over the elements
       unnecessarily and is thus faster.

METHODS
   scalar = $iter->next
SEE ALSO
       GStreamer

COPYRIGHT
       Copyright (C) 2005-2008 by the gtk2-perl team.

       This software is licensed under the LGPL.  See GStreamer for a full
       notice.

perl v5.14.0			  2011-06-19		GStreamer::Iterator(3)
[top]

List of man pages available for Fedora

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net