<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="253242" data-post-id="253242">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="OndrejValenta" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/OndrejValenta/120/16421_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  OndrejValenta
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OndrejValenta" data-post="1" data-topic="48314">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/ondrejvalenta/48/16421_2.png" class="avatar"> OndrejValenta:</div>
<blockquote>
<p>When do you create a return structure?</p>
</blockquote>
</aside>
<p>Strangely no one has mentioned structures yet? Are you guys not using them? Is that too much work for example?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253242" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/32">Post #31</a>
	                </div>
	            </div>
              <div id="likers-container-253242" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253242"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #31"></div>
  </section>
</div>
    <div class="postbit" id="253248" data-post-id="253248">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="cjbottaro" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/120/1469_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  cjbottaro
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group quote-modified" data-username="OndrejValenta" data-post="27" data-topic="48314">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/ondrejvalenta/48/16421_2.png" class="avatar"> OndrejValenta:</div>
<blockquote>
<aside class="quote no-group" data-username="cjbottaro" data-post="26" data-topic="48314">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/48/1469_2.png" class="avatar"> cjbottaro:</div>
<blockquote>
<p><code>ok -&gt; ok</code></p>
</blockquote>
</aside>
<p>Aren’t you missing : there?</p>
</blockquote>
</aside>
<p>No. Since the previous case handles errors, I’m assuming the “fall through” or “catch all” case means success. <code>ok</code> is a var that matches anything and just returns it.</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">x = case {:ok, "foo"} do
  :error -&gt; {:error, "no good"}
  ok -&gt; ok
end
</code></pre>
<p>In that case, <code>x</code> will be <code>{:ok, "foo"}</code>.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253248" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/33">Post #32</a>
	                </div>
	            </div>
              <div id="likers-container-253248" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253248"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #32"></div>
  </section>
</div>
    <div class="postbit" id="253250" data-post-id="253250">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="cjbottaro" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/120/1469_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  cjbottaro
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I only use structs when the error can possibly have tons of info, otherwise it’s just easier to match on <code>{:error, atom}</code>.</p>
<p>For example, I have a clustered Memcached client that supports multiget, multiset, etc. That definitely returns <code>{:error, %Error{...}}</code> because there is lots of info about what went wrong (connection error? which server? did some keys succeed? Which did, which didn’t?).</p>
<p>Off the top of my head HTTPoison and Xandra both do the whole <code>{:error, %ComplexErrorStruct{...}}</code> thing. Works great and makes sense since the errors contain lots of info.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253250" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/34">Post #33</a>
	                </div>
	            </div>
              <div id="likers-container-253250" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253250"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #33"></div>
  </section>
</div>
    <div class="postbit" id="253253" data-post-id="253253">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="al2o3cr" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/al2o3cr/120/3457_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  al2o3cr
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OndrejValenta" data-post="32" data-topic="48314">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/ondrejvalenta/48/16421_2.png" class="avatar"> OndrejValenta:</div>
<blockquote>
<p>Strangely no one has mentioned structures yet?</p>
</blockquote>
</aside>
<p>I can’t think of any return-value-specific guidance on structs - in general, they’re the right choice when:</p>
<ul>
<li>you have a lot of separate pieces of data that would make a tuple unwieldy</li>
<li>the users of that data depend on specific keys, so a type more specific than <code>map()</code> is useful</li>
</ul>
<p>As <a class="mention" href="/u/cjbottaro" rel="nofollow">@cjbottaro</a> points out, HTTPoison is a good example of this; returning a giant tuple or a map from a function like <code>request</code> wouldn’t be ideal.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253253" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/35">Post #34</a>
	                </div>
	            </div>
              <div id="likers-container-253253" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253253"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #34"></div>
  </section>
</div>
    <div class="postbit" id="253256" data-post-id="253256">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="fmn" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/fmn/120/26825_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  fmn
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Just as a curiosity maybe - the pattern I am occasionally following is:</p>
<p><code>{&lt;return code&gt;, &lt;returned data&gt;, &lt;error/exception&gt;}</code>, with instances of it being:</p>
<p><code>{:ok, data, nil}</code><br>
<code>{:err, nil, exception_or_error}</code></p>
<p>It was giving me sense of that, I don’t need to care much about types returned, and order of elements is everything, which is not really the case.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253256" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/36">Post #35</a>
	                </div>
	            </div>
              <div id="likers-container-253256" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253256"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #35"></div>
  </section>
</div>
    <div class="postbit" id="253260" data-post-id="253260">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="al2o3cr" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/al2o3cr/120/3457_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  al2o3cr
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>What’s the benefit of having one element of the tuple always be <code>nil</code>?</p>
<p>It reminds me of Go’s <code>result, err</code> idiom, but that uses <code>err == nil</code> to signal <code>:ok</code>.</p>
<p>I could maybe see if being useful if you had a mixed list of OK / error results and wanted to get all the data (and <code>nil</code> on error) - you could spell it <code>Enum.map(list_of_mixed_results, &amp;elem(&amp;1, 1))</code>…</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253260" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/37">Post #36</a>
	                </div>
	            </div>
              <div id="likers-container-253260" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253260"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #36"></div>
  </section>
</div>
    <div class="postbit" id="253262" data-post-id="253262">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="OndrejValenta" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/OndrejValenta/120/16421_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  OndrejValenta
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="cjbottaro" data-post="33" data-topic="48314">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/48/1469_2.png" class="avatar"> cjbottaro:</div>
<blockquote>
<p><code>ok -&gt; ok</code></p>
</blockquote>
</aside>
<p>Ah, so it’s more like result → result, got you..</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253262" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/38">Post #37</a>
	                </div>
	            </div>
              <div id="likers-container-253262" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253262"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #37"></div>
  </section>
</div>
    <div class="postbit" id="253264" data-post-id="253264">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="fmn" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/fmn/120/26825_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  fmn
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="al2o3cr" data-post="37" data-topic="48314">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/al2o3cr/48/3457_2.png" class="avatar"> al2o3cr:</div>
<blockquote>
<p>What’s the benefit of having one element of the tuple always be <code>nil</code>?</p>
</blockquote>
</aside>
<p>keeping length of a tuple same I guess <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"><br>
length of a tuple and order of elements is part of its API, data model etc. - you could say.</p>
<p>^^^ OK, that part makes little to no sense. Please disregard it <img src="https://forum.elixirforum.com/images/emoji/apple/upside_down_face.png?v=15" title=":upside_down_face:" class="emoji" alt=":upside_down_face:" loading="lazy" width="20" height="20"></p>
<p>I get your point, it’s more of a curiosity than anything else - it would make sense only when both data and error can be returned at the same time.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253264" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/39">Post #38</a>
	                </div>
	            </div>
              <div id="likers-container-253264" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253264"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #38"></div>
  </section>
</div>
    <div class="postbit" id="253267" data-post-id="253267">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="msimonborg" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/msimonborg/120/26638_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  msimonborg
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OndrejValenta" data-post="31" data-topic="48314">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/ondrejvalenta/48/16421_2.png" class="avatar"> OndrejValenta:</div>
<blockquote>
<p>Tagged tuples? Is that another name for a map?</p>
</blockquote>
</aside>
<p><code>{:ok, result}</code> and <code>{:error, error}</code> are tagged tuples. The primary value of tagged tuples being for pattern matching, some people use them in <code>with</code> statements just to match on multiple <code>else</code> clauses, such as this example (of what <strong>not</strong> to do) from <a class="mention" href="/u/keathley" rel="nofollow">@keathley</a> 's blog post <a href="https://keathley.io/blog/good-and-bad-elixir.html" rel="noopener nofollow ugc">Good and Bad Elixir</a></p>
<pre data-code-wrap="elixir"><code class="lang-elixir">with {:service, {:ok, resp}}   &lt;- {:service, call_service(data)},
     {:decode, {:ok, decoded}} &lt;- {:decode, Jason.decode(resp)},
     {:db, {:ok, result}}      &lt;- {:db, store_in_db(decoded)} do
  :ok
else
  {:service, {:error, error}} -&gt;
    # Do something with service error
  {:decode, {:error, error}} -&gt;
    # Do something with json error
  {:db, {:error, error}} -&gt;
    # Do something with db error
end
</code></pre>
<p>I think this is the (anti-)pattern <a class="mention" href="/u/cmo" rel="nofollow">@cmo</a> was referring to, and something José Valim has also publicly discouraged.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253267" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/40">Post #39</a>
	                </div>
	            </div>
              <div id="likers-container-253267" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253267"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #39"></div>
  </section>
</div>
    <div class="postbit" id="253271" data-post-id="253271">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="cjbottaro" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/120/1469_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  cjbottaro
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="fmn" data-post="39" data-topic="48314">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/fmn/48/26825_2.png" class="avatar"> fmn:</div>
<blockquote>
<p>^^^ OK, that part makes little to no sense. Please disregard it <img src="https://forum.elixirforum.com/images/emoji/apple/upside_down_face.png?v=15" title=":upside_down_face:" class="emoji" alt=":upside_down_face:" loading="lazy" width="20" height="20"></p>
</blockquote>
</aside>
<p>Ha! I used to do the same thing for the same reason. But then yeah, I noticed that it just makes pattern matching more cumbersome for no real reason.</p>
<p>And that’s the beauty of pattern matching, right? Matching</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">case foo do
  {:ok, nil}
end
</code></pre>
<p>Is arguably just as easy (or harder?) than…</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">case foo do
  :ok
end
</code></pre> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="253271" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-are-your-recommendations-on-method-signatures-and-return-values/48314/41">Post #40</a>
	                </div>
	            </div>
              <div id="likers-container-253271" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="253271"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #40"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/48314/load_more?page=5">Load more posts (1 remaining)</a>
</div></template></turbo-stream>