<div dir="ltr"><div><div><div><div><div><div><div>Thank you so much.<br><br>--makeRxDxList :: Functor f => f Text -> f [Text]<br></div>Above signature comes from ghci using command :t<br></div>My intention is <br></div>makeRxDxList :: Text -> [[Text]]<br></div>but, I got error, and try several times and below codes pass a complier.<br>makeRxDxList rowRxDx = fmap (\x -> splitOn (pack ",") x) rowRxDx  -- This code pass a compile.<br></div>and then, I run ghci, type :t, and got below signature.<br>makeRxDxList :: Functor f => f Text -> f [Text]<br><br></div>Your kind answer says, I cannot help using fmap. right? ^^;<br></div>Thanks again.<br></div><div class="gmail_extra"><br><div class="gmail_quote">2017-02-22 18:35 GMT+09:00 Francesco Ariis <span dir="ltr"><<a href="mailto:fa-ml@ariis.it" target="_blank">fa-ml@ariis.it</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Wed, Feb 22, 2017 at 05:33:01PM +0900, S. H. Aegis wrote:<br>
> Hello.<br>
> I'm new to Haskell and this is the first time I use Data.Text module.<br>
> And using stack on OSX 10.12.3<br>
> I'm try several times, but fail. and I don't understand what error message<br>
> says.<br>
> How can I fix this?<br>
> Thank you a lot.<br>
<br>
</span>Hello SH, Text.map has signature `(Char -> Char) -> Text -> Text`, so<br>
I expect you to need fmap too if the return value of makeRxDxList has<br>
type f [Text]<br>
<br>
    makeRxDxList rowRxDx = fmap _ rowRxDx<br>
    -- or base map<br>
<br>
_ is a hole and if the compiler will tell you which function needs to<br>
go there, in this case one with signature `Text -> [Text]`.<br>
<br>
Does that help? If not, provide makeRxDxList signature and a brief<br>
description so it's easier to diagnose the problem<br>
<span class="HOEnZb"><font color="#888888">-F<br>
</font></span><div class="HOEnZb"><div class="h5">______________________________<wbr>_________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/beginners</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div>Sok Ha, CHANG<br></div>Dr. Chang's Clinic. #203. 503-23. AmSa-Dong, GangDong-Gu, Seoul.<br></div>Tel: +82-2-442-7585<br></div></div>
</div>