A<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://cppe.ru/index.php?action=history&amp;feed=atom&amp;title=C%2B%2B_Tutorial%2Fmap_multimap%2Fmap_insert</id>
		<title>C++ Tutorial/map multimap/map insert - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://cppe.ru/index.php?action=history&amp;feed=atom&amp;title=C%2B%2B_Tutorial%2Fmap_multimap%2Fmap_insert"/>
		<link rel="alternate" type="text/html" href="http://cppe.ru/index.php?title=C%2B%2B_Tutorial/map_multimap/map_insert&amp;action=history"/>
		<updated>2026-04-16T22:15:26Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://cppe.ru/index.php?title=C%2B%2B_Tutorial/map_multimap/map_insert&amp;diff=2087&amp;oldid=prev</id>
		<title> в 14:21, 25 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://cppe.ru/index.php?title=C%2B%2B_Tutorial/map_multimap/map_insert&amp;diff=2087&amp;oldid=prev"/>
				<updated>2010-05-25T14:21:17Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 14:21, 25 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://cppe.ru/index.php?title=C%2B%2B_Tutorial/map_multimap/map_insert&amp;diff=2088&amp;oldid=prev</id>
		<title>Admin: 1 версия:&amp;#32;Импорт контента...</title>
		<link rel="alternate" type="text/html" href="http://cppe.ru/index.php?title=C%2B%2B_Tutorial/map_multimap/map_insert&amp;diff=2088&amp;oldid=prev"/>
				<updated>2010-05-25T10:28:50Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия: Импорт контента...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Duplicate keys are not allowed in a map==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;string&amp;gt;&lt;br /&gt;
#include &amp;lt;map&amp;gt;&lt;br /&gt;
#include &amp;lt;utility&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
void show(const char *msg, map&amp;lt;string, string&amp;gt; mp);&lt;br /&gt;
int main() {&lt;br /&gt;
  map&amp;lt;string, string&amp;gt; phonemap;&lt;br /&gt;
  phonemap[&amp;quot;A&amp;quot;] = &amp;quot;444-555-1234&amp;quot;;&lt;br /&gt;
  phonemap[&amp;quot;B&amp;quot;] = &amp;quot;555-555-6576&amp;quot;;&lt;br /&gt;
  phonemap[&amp;quot;C&amp;quot;] = &amp;quot;555-555-9843&amp;quot;;&lt;br /&gt;
  show(&amp;quot;Here is the original map: &amp;quot;, phonemap);&lt;br /&gt;
  cout &amp;lt;&amp;lt; endl;&lt;br /&gt;
  // Now, change the phone number for Ken.&lt;br /&gt;
  phonemap[&amp;quot;B&amp;quot;] = &amp;quot;555 555-5555&amp;quot;;&lt;br /&gt;
  cout &amp;lt;&amp;lt; &amp;quot;New number for Ken: &amp;quot; &amp;lt;&amp;lt; phonemap[&amp;quot;Ken&amp;quot;] &amp;lt;&amp;lt; &amp;quot;\n\n&amp;quot;;&lt;br /&gt;
  // Create a pair object that will contain the result of a call to insert().&lt;br /&gt;
  pair&amp;lt;map&amp;lt;string, string&amp;gt;::iterator, bool&amp;gt; result;&lt;br /&gt;
  // Duplicate keys are not allowed, as the following proves.&lt;br /&gt;
  result = phonemap.insert(pair&amp;lt;string, string&amp;gt;(&amp;quot;B&amp;quot;, &amp;quot;555-1010&amp;quot;));&lt;br /&gt;
  if(result.second) &lt;br /&gt;
     cout &amp;lt;&amp;lt; &amp;quot;Duplicate added! Error!&amp;quot;;&lt;br /&gt;
  else &lt;br /&gt;
     cout &amp;lt;&amp;lt; &amp;quot;Duplicate not allowed.\n&amp;quot;;&lt;br /&gt;
  show(&amp;quot;phonemap after attempt to add duplicate key: &amp;quot;, phonemap);&lt;br /&gt;
  return 0;&lt;br /&gt;
}&lt;br /&gt;
// Display the contents of a map&amp;lt;string, string&amp;gt; by using an iterator.&lt;br /&gt;
void show(const char *msg, map&amp;lt;string, string&amp;gt; mp) {&lt;br /&gt;
  map&amp;lt;string, string&amp;gt;::iterator itr;&lt;br /&gt;
  cout &amp;lt;&amp;lt; msg &amp;lt;&amp;lt; endl;&lt;br /&gt;
  for(itr=mp.begin(); itr != mp.end(); ++itr)&lt;br /&gt;
   cout &amp;lt;&amp;lt; &amp;quot; &amp;quot; &amp;lt;&amp;lt; itr-&amp;gt;first &amp;lt;&amp;lt; &amp;quot;: &amp;quot; &amp;lt;&amp;lt; itr-&amp;gt;second &amp;lt;&amp;lt; endl;&lt;br /&gt;
  cout &amp;lt;&amp;lt; endl;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Insert a pair object directly==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;map&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
typedef map &amp;lt;int, string&amp;gt; MAP_INT_STRING;&lt;br /&gt;
typedef multimap &amp;lt;int, string&amp;gt; MMAP_INT_STRING;&lt;br /&gt;
int main ()&lt;br /&gt;
{&lt;br /&gt;
    MAP_INT_STRING mapIntToString;&lt;br /&gt;
    mapIntToString.insert (pair &amp;lt;int, string&amp;gt; (1000, &amp;quot;One Thousand&amp;quot;));&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;The map contains &amp;quot; &amp;lt;&amp;lt; mapIntToString.size ();&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot; key-value pairs. &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;The elements in the map are: &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    return 0;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Insert a pair using function make_pair==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;map&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
typedef map &amp;lt;int, string&amp;gt; MAP_INT_STRING;&lt;br /&gt;
typedef multimap &amp;lt;int, string&amp;gt; MMAP_INT_STRING;&lt;br /&gt;
int main ()&lt;br /&gt;
{&lt;br /&gt;
    MAP_INT_STRING mapIntToString;&lt;br /&gt;
    mapIntToString.insert (make_pair (-1, &amp;quot;Minus One&amp;quot;));&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;The map contains &amp;quot; &amp;lt;&amp;lt; mapIntToString.size ();&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot; key-value pairs. &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;The elements in the map are: &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    return 0;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Insert characters into map.==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;string&amp;gt;&lt;br /&gt;
#include &amp;lt;map&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
int main() {&lt;br /&gt;
  map&amp;lt;string, int&amp;gt; m;&lt;br /&gt;
  m.insert(pair&amp;lt;string, int&amp;gt;(&amp;quot;A&amp;quot;, 100));&lt;br /&gt;
  m.insert(pair&amp;lt;string, int&amp;gt;(&amp;quot;G&amp;quot;, 300));&lt;br /&gt;
  m.insert(pair&amp;lt;string, int&amp;gt;(&amp;quot;B&amp;quot;, 200));&lt;br /&gt;
  return 0;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Insert key-value pairs into the map using value_type==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;map&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
typedef map &amp;lt;int, string&amp;gt; MAP_INT_STRING;&lt;br /&gt;
typedef multimap &amp;lt;int, string&amp;gt; MMAP_INT_STRING;&lt;br /&gt;
int main ()&lt;br /&gt;
{&lt;br /&gt;
    MAP_INT_STRING mapIntToString;&lt;br /&gt;
    // Insert key-value pairs into the map using value_type&lt;br /&gt;
    mapIntToString.insert (MAP_INT_STRING::value_type (3, &amp;quot;Three&amp;quot;));&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;The map contains &amp;quot; &amp;lt;&amp;lt; mapIntToString.size ();&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot; key-value pairs. &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;The elements in the map are: &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    return 0;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Insert using an array-like syntax for inserting key-value pairs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;map&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
typedef map &amp;lt;int, string&amp;gt; MAP_INT_STRING;&lt;br /&gt;
typedef multimap &amp;lt;int, string&amp;gt; MMAP_INT_STRING;&lt;br /&gt;
int main ()&lt;br /&gt;
{&lt;br /&gt;
    MAP_INT_STRING mapIntToString;&lt;br /&gt;
    // Insert using an array-like syntax for inserting key-value pairs&lt;br /&gt;
    mapIntToString [1000000] = &amp;quot;One Million&amp;quot;;&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;The map contains &amp;quot; &amp;lt;&amp;lt; mapIntToString.size ();&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot; key-value pairs. &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    cout &amp;lt;&amp;lt; &amp;quot;The elements in the map are: &amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;
    return 0;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Insert value pair to map==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
using std::cout;&lt;br /&gt;
using std::endl;&lt;br /&gt;
#include &amp;lt;map&amp;gt; // map class-template definition&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
   std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt; pairs;&lt;br /&gt;
   pairs.insert( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::value_type( 15, 2.7 ) );&lt;br /&gt;
   pairs.insert( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::value_type( 30, 111.11 ) );&lt;br /&gt;
   pairs.insert( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::value_type( 0, 1010.1 ) );&lt;br /&gt;
   pairs.insert( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::value_type( 10, 22.22 ) );&lt;br /&gt;
   pairs.insert( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::value_type( 25, 33.333 ) );&lt;br /&gt;
   pairs.insert( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::value_type( 0, 77.54 ) ); // dup ignored&lt;br /&gt;
   pairs.insert( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::value_type( 20, 9.345 ) );&lt;br /&gt;
   pairs.insert( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::value_type( 15, 99.3 ) ); // dup ignored&lt;br /&gt;
   cout &amp;lt;&amp;lt; &amp;quot;pairs contains:\nKey\tValue\n&amp;quot;;&lt;br /&gt;
   // use const_iterator to walk through elements of pairs&lt;br /&gt;
   for ( std::map&amp;lt; int, double, std::less&amp;lt; int &amp;gt; &amp;gt;::const_iterator iter = pairs.begin();&lt;br /&gt;
      iter != pairs.end(); ++iter )&lt;br /&gt;
      cout &amp;lt;&amp;lt; iter-&amp;gt;first &amp;lt;&amp;lt; &amp;quot;\t&amp;quot; &amp;lt;&amp;lt; iter-&amp;gt;second &amp;lt;&amp;lt; &amp;quot;\n&amp;quot;;&lt;br /&gt;
   cout &amp;lt;&amp;lt; endl;&lt;br /&gt;
   return 0;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;pre class=codeResult&amp;gt;pairs contains:&lt;br /&gt;
Key     Value&lt;br /&gt;
0       1010.1&lt;br /&gt;
10      22.22&lt;br /&gt;
15      2.7&lt;br /&gt;
20      9.345&lt;br /&gt;
25      33.333&lt;br /&gt;
30      111.11&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Use insert() to add an entry==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;string&amp;gt;&lt;br /&gt;
#include &amp;lt;map&amp;gt;&lt;br /&gt;
#include &amp;lt;utility&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
void show(const char *msg, map&amp;lt;string, string&amp;gt; mp);&lt;br /&gt;
int main() {&lt;br /&gt;
  map&amp;lt;string, string&amp;gt; phonemap;&lt;br /&gt;
  phonemap[&amp;quot;A&amp;quot;] = &amp;quot;444-555-1234&amp;quot;;&lt;br /&gt;
  phonemap[&amp;quot;B&amp;quot;] = &amp;quot;555-555-6576&amp;quot;;&lt;br /&gt;
  phonemap[&amp;quot;C&amp;quot;] = &amp;quot;555-555-9843&amp;quot;;&lt;br /&gt;
  show(&amp;quot;Here is the original map: &amp;quot;, phonemap);&lt;br /&gt;
  phonemap[&amp;quot;B&amp;quot;] = &amp;quot;555 555-5555&amp;quot;;&lt;br /&gt;
  cout &amp;lt;&amp;lt; &amp;quot;New number: &amp;quot; &amp;lt;&amp;lt; phonemap[&amp;quot;B&amp;quot;] &amp;lt;&amp;lt; endl;&lt;br /&gt;
  // Create a pair object that will contain the result of a call to insert().&lt;br /&gt;
  pair&amp;lt;map&amp;lt;string, string&amp;gt;::iterator, bool&amp;gt; result;&lt;br /&gt;
  // Use insert() to add an entry.&lt;br /&gt;
  result = phonemap.insert(pair&amp;lt;string, string&amp;gt;(&amp;quot;J&amp;quot;, &amp;quot;555-9999&amp;quot;));&lt;br /&gt;
  if(result.second) cout &amp;lt;&amp;lt; &amp;quot;J added.&amp;quot;;&lt;br /&gt;
  show(&amp;quot;phonemap after adding J: &amp;quot;, phonemap);&lt;br /&gt;
  return 0;&lt;br /&gt;
}&lt;br /&gt;
// Display the contents of a map&amp;lt;string, string&amp;gt; by using an iterator.&lt;br /&gt;
void show(const char *msg, map&amp;lt;string, string&amp;gt; mp) {&lt;br /&gt;
  map&amp;lt;string, string&amp;gt;::iterator itr;&lt;br /&gt;
  cout &amp;lt;&amp;lt; msg &amp;lt;&amp;lt; endl;&lt;br /&gt;
  for(itr=mp.begin(); itr != mp.end(); ++itr)&lt;br /&gt;
   cout &amp;lt;&amp;lt; &amp;quot; &amp;quot; &amp;lt;&amp;lt; itr-&amp;gt;first &amp;lt;&amp;lt; &amp;quot;: &amp;quot; &amp;lt;&amp;lt; itr-&amp;gt;second &amp;lt;&amp;lt; endl;&lt;br /&gt;
  cout &amp;lt;&amp;lt; endl;&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==use subscript operator to write value to a map==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;algorithm&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;map&amp;gt;&lt;br /&gt;
#include &amp;lt;utility&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
int main( )&lt;br /&gt;
{&lt;br /&gt;
   const char* word[] = { &amp;quot;A&amp;quot;, &amp;quot;B&amp;quot;, &amp;quot;C&amp;quot;, &amp;quot;D&amp;quot;,&amp;quot;E&amp;quot; };&lt;br /&gt;
   const char* clue[] = { &amp;quot;a&amp;quot;, &amp;quot;b&amp;quot;,&amp;quot;c&amp;quot;, &amp;quot;d&amp;quot;,&amp;quot;e&amp;quot; };&lt;br /&gt;
   map&amp;lt;string,string&amp;gt; dictionary1;&lt;br /&gt;
   transform( word, word+sizeof(word)/sizeof(word[0]), clue,inserter( dictionary1, dictionary1.end() ),make_pair&amp;lt;string,string&amp;gt; );&lt;br /&gt;
   cout &amp;lt;&amp;lt; &amp;quot;There are &amp;quot; &amp;lt;&amp;lt; dictionary1.size() &amp;lt;&amp;lt; &amp;quot; words in the dictionary\n\n&amp;quot;;&lt;br /&gt;
   cout &amp;lt;&amp;lt; &amp;quot;The clue for POPS is \&amp;quot;&amp;quot; &amp;lt;&amp;lt; dictionary1[&amp;quot;POPS&amp;quot;] &amp;lt;&amp;lt; &amp;quot;\&amp;quot;\n&amp;quot;&lt;br /&gt;
      &amp;lt;&amp;lt; &amp;quot;The clue for TAT is \&amp;quot;&amp;quot; &amp;lt;&amp;lt; dictionary1[&amp;quot;TAT&amp;quot;] &amp;lt;&amp;lt; &amp;quot;\&amp;quot;\n&amp;quot;&lt;br /&gt;
      &amp;lt;&amp;lt; &amp;quot;The clue for ESPO0 is \&amp;quot;&amp;quot; &amp;lt;&amp;lt; dictionary1[&amp;quot;ESPO0&amp;quot;] &amp;lt;&amp;lt; &amp;quot;\&amp;quot;\n&amp;quot;;&lt;br /&gt;
   cout &amp;lt;&amp;lt; &amp;quot;\nThere are &amp;quot; &amp;lt;&amp;lt; dictionary1.size() &amp;lt;&amp;lt; &amp;quot; words in the dictionary\n\n&amp;quot;;&lt;br /&gt;
   // use subscript operator to write value&lt;br /&gt;
   dictionary1[&amp;quot;ESPO0&amp;quot;] = &amp;quot;Typo in name&amp;quot;;&lt;br /&gt;
   cout &amp;lt;&amp;lt; &amp;quot;The clue for ESPO0 is \&amp;quot;&amp;quot; &amp;lt;&amp;lt; dictionary1[&amp;quot;ESPO0&amp;quot;] &amp;lt;&amp;lt; &amp;quot;\&amp;quot;&amp;quot;;&lt;br /&gt;
 &lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>