// -*- C++ -*- // Boost general library 'format' --------------------------- // See http://www.boost.org for updates, documentation, and revision history. // (C) Samuel Krempp 2001 // krempp@crans.ens-cachan.fr // Permission to copy, use, modify, sell and // distribute this software is granted provided this copyright notice appears // in all copies. This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // ideas taken from Rüdiger Loos's format class // and Karl Nelson's ofstream // ---------------------------------------------------------------------------- // feed_args.hpp : functions for processing each argument // (feed, feed_manip, and distribute) // ---------------------------------------------------------------------------- #ifndef BOOST_FORMAT_FEED_ARGS_HPP #define BOOST_FORMAT_FEED_ARGS_HPP #include "boost/format/format_class.hpp" #include "boost/format/group.hpp" #include "boos
aboutsummaryrefslogtreecommitdiff
path: root/gnu/build
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-10-05 21:02:13 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-10-18 21:09:33 +0100
commit194d8e51cf43b697914c5a1b78dda77fd4adb886 (patch)
tree4ba9359f71bbfbe43a887c4a430e0ba48e7ce48d /gnu/build
parent8c6d24d388bcd72b595b5293c7afc6e06bde941b (diff)
downloadguix-194d8e51cf43b697914c5a1b78dda77fd4adb886.tar.gz
guix-194d8e51cf43b697914c5a1b78dda77fd4adb886.zip
gnu: Add packages/python-graphics module.
* gnu/packages/python-graphics.scm: New file. * gnu/local.mk: Add gnu/packages/python-graphics.scm to the scope. Change-Id: I1d077c838ff1c3c014c3d699b539eaf8befd5084
Diffstat (limited to 'gnu/build')
0 files changed, 0 insertions, 0 deletions
cur_arg_) { put (x, self.items_[i], self.items_[i].res_, self.oss_ ); } } } template basic_format& feed(basic_format& self, T x) { if(self.dumped_) self.clear(); distribute (self, x); ++self.cur_arg_; if(self.bound_.size() != 0) { while( self.cur_arg_ < self.num_args_ && self.bound_[self.cur_arg_] ) ++self.cur_arg_; } // this arg is finished, reset the stream's format state self.state0_.apply_on(self.oss_); return self; } } // namespace detail } // namespace io } // namespace boost #endif // BOOST_FORMAT_FEED_ARGS_HPP