resources.qbk 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [/
  2. / Copyright (c) 2008 Eric Niebler
  3. /
  4. / Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. /]
  7. [/=========================================]
  8. [section:resources Background and Resources]
  9. [/=========================================]
  10. Proto was initially developed as part of _xpressive_ to simplify the job of
  11. transforming an expression template into an executable finite state machine capable
  12. of matching a regular expression. Since then, Proto has found application in the
  13. redesigned and improved Spirit-2 and the related Karma library. As a result of
  14. these efforts, Proto evolved into a generic and abstract grammar and tree
  15. transformation framework applicable in a wide variety of EDSL scenarios.
  16. The grammar and tree transformation framework is modeled on Spirit's grammar and
  17. semantic action framework. The expression tree data structure is similar to Fusion
  18. data structures in many respects, and is interoperable with Fusion's iterators and
  19. algorithms.
  20. The syntax for the grammar-matching features of `proto::matches<>` is inspired by
  21. MPL's lambda expressions.
  22. The idea for using function types for Proto's composite transforms is inspired by Aleksey Gurtovoy's
  23. [@http://lists.boost.org/Archives/boost/2002/11/39718.php "round" lambda] notation.
  24. [/=================]
  25. [heading References]
  26. [/=================]
  27. [:[#boost_proto.users_guide.resources.SYB]Ren, D. and Erwig, M. 2006. A generic recursion toolbox for Haskell or: scrap your boilerplate systematically. In ['Proceedings of the 2006 ACM SIGPLAN Workshop on Haskell] (Portland, Oregon, USA, September 17 - 17, 2006). Haskell '06. ACM, New York, NY, 13-24. DOI=[@http://doi.acm.org/10.1145/1159842.1159845]]
  28. [/======================]
  29. [heading Further Reading]
  30. [/======================]
  31. A technical paper about an earlier version of Proto was accepted into the
  32. [@http://lcsd.cs.tamu.edu/2007/ ACM SIGPLAN Symposium on Library-Centric Software
  33. Design LCSD'07], and can be found at [@http://lcsd.cs.tamu.edu/2007/final/1/1_Paper.pdf].
  34. The tree transforms described in that paper differ from what exists today.
  35. [endsect]